Skip to content

Commit

Permalink
fix(core): suppress access errors during project file scan (#13031)
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder committed Nov 7, 2022
1 parent 67e032d commit f583689
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/nx/src/config/workspaces.ts
Expand Up @@ -694,6 +694,7 @@ export function globForProjectFiles(
'node_modules',
'**/node_modules',
'dist',
'.git',
...globsToExclude,
];

Expand All @@ -714,6 +715,7 @@ export function globForProjectFiles(
absolute: false,
cwd: root,
dot: true,
suppressErrors: true,
});

projectGlobCache = deduplicateProjectFiles(globResults, ig);
Expand Down

1 comment on commit f583689

@vercel
Copy link

@vercel vercel bot commented on f583689 Nov 7, 2022

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx.dev
nx-dev-git-master-nrwl.vercel.app
nx-five.vercel.app

Please sign in to comment.