Skip to content

Commit

Permalink
chore(repo): migrate to Nx 13.10 (#9731)
Browse files Browse the repository at this point in the history
additionally, removes references to nrwl plugins that can be fully resolved through local plugin resolution. Notable holdouts:

- @nrwl/react and @nrwl/next: referenced in jest.config.js, so not resolved during runtime.
- @nrwl/web: dependency of @nrwl/react
- @nrwl/eslint-plugin-nx: required during eslint startup, not resolved by Nx
  • Loading branch information
AgentEnder committed Apr 8, 2022
1 parent 409f000 commit 728f420
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 207 deletions.
21 changes: 8 additions & 13 deletions package.json
Expand Up @@ -60,17 +60,12 @@
"@ngrx/schematics": "~13.0.0",
"@ngrx/store": "~13.0.0",
"@ngrx/store-devtools": "~13.0.0",
"@nrwl/cypress": "13.10.0-beta.9",
"@nrwl/eslint-plugin-nx": "13.10.0-beta.9",
"@nrwl/jest": "13.10.0-beta.9",
"@nrwl/js": "13.10.0-beta.9",
"@nrwl/linter": "13.10.0-beta.9",
"@nrwl/next": "13.10.0-beta.9",
"@nrwl/node": "13.10.0-beta.9",
"@nrwl/nx-cloud": "13.3.0-beta.0",
"@nrwl/react": "13.10.0-beta.9",
"@nrwl/web": "13.10.0-beta.9",
"@nrwl/workspace": "13.10.0-beta.9",
"@nrwl/eslint-plugin-nx": "13.10.0",
"@nrwl/jest": "13.10.0",
"@nrwl/next": "13.10.0",
"@nrwl/nx-cloud": "13.2.2",
"@nrwl/react": "13.10.0",
"@nrwl/web": "13.10.0",
"@parcel/watcher": "2.0.4",
"@phenomnomnominal/tsquery": "4.1.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
Expand Down Expand Up @@ -193,7 +188,7 @@
"ng-packagr": "~13.3.0",
"ngrx-store-freeze": "0.2.4",
"node-fetch": "^2.6.7",
"nx": "13.10.0-beta.9",
"nx": "13.10.0",
"open": "^8.4.0",
"parse-markdown-links": "^1.0.4",
"parse5": "4.0.0",
Expand Down Expand Up @@ -311,4 +306,4 @@
"immer": "~9.0.6",
"minimist": "^1.2.6"
}
}
}
@@ -1,6 +1,6 @@
import { Tree } from 'nx/src/shared/tree';
import { NormalizedSchema } from '../schema';
import {
Tree,
readProjectConfiguration,
updateProjectConfiguration,
} from '@nrwl/devkit';
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/rules/update-mfe-project.ts
@@ -1,5 +1,5 @@
import { Tree } from 'nx/src/shared/tree';
import {
Tree,
readProjectConfiguration,
updateProjectConfiguration,
} from '@nrwl/devkit';
Expand Down

0 comments on commit 728f420

Please sign in to comment.