Skip to content

Commit

Permalink
fix(core): remove logs on missing hoisted package (#15295)
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Feb 27, 2023
1 parent ade2026 commit 729ff7e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/nx/src/lock-file/utils/package-json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ export function getHoistedPackageVersion(packageName: string): string {
const content = readFileSync(fullPath, 'utf-8');
return JSON.parse(content)?.version;
}
if (process.env.NX_VERBOSE_LOGGING === 'true') {
console.warn(`Could not find ${fullPath}`);
}
return;
}

Expand Down

1 comment on commit 729ff7e

@vercel
Copy link

@vercel vercel bot commented on 729ff7e Feb 27, 2023

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-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app
nx.dev
nx-five.vercel.app

Please sign in to comment.