Skip to content

Commit

Permalink
fix(core): fix lock file pruning mismatches
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Dec 22, 2022
1 parent 4a43a04 commit a198fab
Show file tree
Hide file tree
Showing 22 changed files with 88,890 additions and 45 deletions.
49 changes: 25 additions & 24 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
tmp
/test
/build
node_modules
/package.json
packages/workspace/src/generators/**/files/**/*.json
packages/angular/src/schematics/**/files/**/*.json
packages/angular/src/migrations/**/files/**/*.json
packages/web/src/generators/**/files/**/*.json
packages/node/src/schematics/**/files/**/*.json
packages/express/src/schematics/**/files/**/*.json
packages/nest/src/schematics/**/files/**/*.json
packages/react/src/schematics/**/files/**/*.json
packages/jest/src/schematics/**/files/**/*.json
packages/**/schematics/**/files/**/*.html
packages/**/generators/**/files/**/*.html
nx-dev/nx-dev/.next/
/.vscode
/.idea
/.github
/coverage
/.yarn
/.verdaccio/build/local-registry
/dist
tmp
/test
/build
node_modules
/package.json
packages/workspace/src/generators/**/files/**/*.json
packages/angular/src/schematics/**/files/**/*.json
packages/angular/src/migrations/**/files/**/*.json
packages/web/src/generators/**/files/**/*.json
packages/node/src/schematics/**/files/**/*.json
packages/express/src/schematics/**/files/**/*.json
packages/nest/src/schematics/**/files/**/*.json
packages/react/src/schematics/**/files/**/*.json
packages/jest/src/schematics/**/files/**/*.json
packages/nx/src/lock-file/__fixtures__/**/*.*
packages/**/schematics/**/files/**/*.html
packages/**/generators/**/files/**/*.html
nx-dev/nx-dev/.next/
/.vscode
/.idea
/.github
/coverage
/.yarn
/.verdaccio/build/local-registry
/dist
6 changes: 5 additions & 1 deletion packages/nx/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@
{
"input": "packages/nx",
"glob": "**/*.json",
"ignore": ["**/tsconfig*.json", "**/project.json"],
"ignore": [
"**/tsconfig*.json",
"**/project.json",
"**/__fixtures__/**"
],
"output": "/"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22955,7 +22955,7 @@ export const ssh2LockFileV3 = `{

export const rxjsTslibLockFileV1 = `{
"name": "test",
"version": "1.0.0",
"version": "0.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/nx/src/lock-file/__fixtures__/nextjs/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
strict-peer-dependencies=false
auto-install-peers=true
Loading

0 comments on commit a198fab

Please sign in to comment.