Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/nxPublic

feat(core): add support for pnpm catalogs#32978

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Draft
leosvelperez wants to merge3 commits intomaster
base:master
Choose a base branch
Loading
fromfeat/support-pnpm-catalogs

Conversation

leosvelperez
Copy link
Member

Current Behavior

Pnpm Catalogs is not supported.

Expected Behavior

Pnpm Catalogs should be supported.

Related Issue(s)

Fixes#30035
Fixes#29772

jeffora and beaussan reacted with eyes emoji
@leosvelperezleosvelperez self-assigned thisOct 6, 2025
@vercelVercel
Copy link

vercelbot commentedOct 6, 2025
edited
Loading

The latest updates on your projects. Learn more aboutVercel for GitHub.

ProjectDeploymentPreviewUpdated (UTC)
nx-devReadyReadyPreviewOct 7, 2025 4:19pm

@netlifyNetlify
Copy link

netlifybot commentedOct 6, 2025
edited
Loading

Deploy Preview fornx-docs ready!

NameLink
🔨 Latest commitdb876a4
🔍 Latest deploy loghttps://app.netlify.com/projects/nx-docs/deploys/68e53b032b5e19000839830e
😎 Deploy Previewhttps://deploy-preview-32978--nx-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to yourNetlify project configuration.

@nx-cloudNx Cloud
Copy link
Contributor

nx-cloudbot commentedOct 6, 2025
edited
Loading

View yourCI Pipeline Execution ↗ for commitdb876a4

CommandStatusDurationResult
nx affected --targets=lint,test,test-kt,build,e...✅ Succeeded3m 19sView ↗
nx run-many -t check-imports check-commit check...✅ Succeeded2m 42sView ↗
nx-cloud record -- nx-cloud conformance:check✅ Succeeded2sView ↗
nx-cloud record -- nx format:check✅ Succeeded9sView ↗
nx-cloud record -- nx sync:check✅ Succeeded6sView ↗
nx documentation✅ Succeeded3m 51sView ↗

☁️Nx Cloud last updated this comment at2025-10-07 19:09:49 UTC

@github-actionsGitHub Actions
Copy link
Contributor

Failed to publish a PR release of this pull request, triggered by@leosvelperez.
See the failed workflow run at:https://github.com/nrwl/nx/actions/runs/18287018769

@github-actionsGitHub Actions
Copy link
Contributor

🐳 We have a release for that!

This PR has a release associated with it. You can try it out using this command:

npx create-nx-workspace@0.0.0-pr-32978-2f0e271 my-workspace

Or just copy this version and use it in your own command:

0.0.0-pr-32978-2f0e271
Release details📑
Published version0.0.0-pr-32978-2f0e271
Triggered by@leosvelperez
Branchfeat/support-pnpm-catalogs
Commit2f0e271
Workflow run18308363858

To request a new release for this pull request, mention someone from the Nx team or the@nrwl/nx-pipelines-reviewers.

Copy link
Contributor

@nx-cloudnx-cloudbot left a comment
edited
Loading

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Nx Cloud is proposing a fix for your failed CI:

We've identified and fixed a batching issue in the daemon's file watching system. When multiple files were created in quick succession, the watch command was receiving separate notifications for each batch instead of a single consolidated notification. This fix ensures that all created files are properly accumulated and sent in a single notification, preventing the watch command from executing multiple times for the same project.

We verified this fix by re-runninge2e-nx:e2e-ci--src/watch.test.ts.

Suggested Fix changes
diff --git a/packages/angular-rspack-compiler/package.json b/packages/angular-rspack-compiler/package.jsonindex 164423cb75..ae02aad3a1 100644--- a/packages/angular-rspack-compiler/package.json+++ b/packages/angular-rspack-compiler/package.json@@ -1,7 +1,7 @@ {   "name": "@nx/angular-rspack-compiler",   "private": false,-  "version": "0.0.1",+  "version": "22.0.0",   "publishConfig": {     "access": "public"   },diff --git a/packages/angular-rspack/package.json b/packages/angular-rspack/package.jsonindex bd24ec75b0..fc933a089e 100644--- a/packages/angular-rspack/package.json+++ b/packages/angular-rspack/package.json@@ -1,6 +1,6 @@ {   "name": "@nx/angular-rspack",-  "version": "0.0.1",+  "version": "22.0.0",   "private": false,   "publishConfig": {     "access": "public"@@ -49,8 +49,8 @@     "@ampproject/remapping": "2.3.0",     "@babel/core": "7.28.3",     "@discoveryjs/json-ext": "0.6.3",-    "@nx/angular-rspack-compiler": "workspace:*",-    "@nx/devkit": "workspace:*",+    "@nx/angular-rspack-compiler": "22.0.0",+    "@nx/devkit": "22.0.0",     "ansi-colors": "4.1.3",     "autoprefixer": "10.4.21",     "deepmerge": "^4.3.1",diff --git a/packages/nx/src/daemon/server/project-graph-incremental-recomputation.ts b/packages/nx/src/daemon/server/project-graph-incremental-recomputation.tsindex c334b5d4a2..a17ceeddd9 100644--- a/packages/nx/src/daemon/server/project-graph-incremental-recomputation.ts+++ b/packages/nx/src/daemon/server/project-graph-incremental-recomputation.ts@@ -62,6 +62,7 @@ export let currentProjectGraph: ProjectGraph | undefined;  const collectedUpdatedFiles = new Set<string>(); const collectedDeletedFiles = new Set<string>();+const collectedCreatedFiles = new Set<string>(); const projectGraphRecomputationListeners = new Set<   (projectGraph: ProjectGraph) => void >();@@ -134,6 +135,10 @@ export function addUpdatedAndDeletedFiles(     collectedUpdatedFiles.add(f);   }+  for (let f of createdFiles) {+    collectedCreatedFiles.add(f);+  }+   for (let f of deletedFiles) {     collectedUpdatedFiles.delete(f);     collectedDeletedFiles.add(f);@@ -158,8 +163,10 @@ export function addUpdatedAndDeletedFiles(         processFilesAndCreateAndSerializeProjectGraph(await getPlugins());       const { projectGraph } = await cachedSerializedProjectGraphPromise;-      if (createdFiles.length > 0) {-        notifyFileWatcherSockets(createdFiles, null, null);+      if (collectedCreatedFiles.size > 0) {+        const createdFilesToNotify = Array.from(collectedCreatedFiles);+        collectedCreatedFiles.clear();+        notifyFileWatcherSockets(createdFilesToNotify, null, null);       }        notifyProjectGraphRecomputationListeners(projectGraph);

Apply fix via Nx Cloud  Reject fix via Nx Cloud

Apply fix locally ↗  View interactive diff ↗


⚙️ An Nx Cloud workspace admin can disable these reviewsin workspace settings.

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@nx-cloudnx-cloud[bot]nx-cloud[bot] left review comments

@meeroslavmeeroslavAwaiting requested review from meeroslavmeeroslav will be requested when the pull request is marked ready for reviewmeeroslav is a code owner

@FrozenPandazFrozenPandazAwaiting requested review from FrozenPandazFrozenPandaz will be requested when the pull request is marked ready for reviewFrozenPandaz is a code owner

@vsavkinvsavkinAwaiting requested review from vsavkinvsavkin will be requested when the pull request is marked ready for reviewvsavkin is a code owner

@Coly010Coly010Awaiting requested review from Coly010Coly010 will be requested when the pull request is marked ready for reviewColy010 is a code owner

At least 1 approving review is required to merge this pull request.

Assignees

@leosvelperezleosvelperez

Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

PNPM Catalogs are not supported Generators don't work when using pnpm catalogs
1 participant
@leosvelperez

[8]ページ先頭

©2009-2025 Movatter.jp