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 9, 2022
1 parent e64b11a commit e6dbcad
Show file tree
Hide file tree
Showing 6 changed files with 8,865 additions and 5,904 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 e6dbcad

Please sign in to comment.