Skip to content

Commit

Permalink
feat(core): support npm workspaces in lock files
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Dec 7, 2022
1 parent 1b36515 commit 9cad75e
Show file tree
Hide file tree
Showing 5 changed files with 8,864 additions and 5,902 deletions.
38 changes: 38 additions & 0 deletions packages/nx/src/lock-file/__fixtures__/npm.lock.ts
Expand Up @@ -22642,3 +22642,41 @@ export const lockFileV1YargsAndDevkitOnly = `{
}
}
`;

/**
* V1
* dependencies:
* "workspace-a": {
"version": "file:workspace-a",
"requires": {
"@nrwl/devkit": "15.0.13",
"postgres": "charsleysa/postgres#fix-errors-compiled",
"yargs": "17.6.2"
}
},
*/

/**
* V1
* packages:
* "node_modules/workspace-a": {
"resolved": "workspace-a",
"link": true
},
"workspace-a": {
"dependencies": {
"@nrwl/devkit": "15.0.13",
"postgres": "charsleysa/postgres#fix-errors-compiled",
"yargs": "17.6.2"
}
},
* dependencies:
"workspace-a": {
"version": "file:workspace-a",
"requires": {
"@nrwl/devkit": "15.0.13",
"postgres": "charsleysa/postgres#fix-errors-compiled",
"yargs": "17.6.2"
}
},
*/

0 comments on commit 9cad75e

Please sign in to comment.