-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate from nx 13 to 15.6.3 (#27885)
* chore: migrate to nx 14 * chore: apply nx 14 migrations * chore: update codeowners * chore: migrate to nx 15.6.3 * chore: apply nx 15.6.3 migrations * fix(tools): move inline templates that cause dep graph resolution issues to template files * fix(scripts-generators): migrate away from deprecated nx interfaces to pass lint
- Loading branch information
Showing
33 changed files
with
1,679 additions
and
1,597 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
const { getJestProjects } = require('@nrwl/jest'); | ||
|
||
module.exports = { | ||
export default { | ||
projects: [...getJestProjects()], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,36 @@ | ||
{ | ||
"migrations": [ | ||
{ | ||
"version": "13.9.0-beta.0", | ||
"description": "Replace @nrwl/tao with nx", | ||
"cli": "nx", | ||
"implementation": "./src/migrations/update-13-9-0/replace-tao-with-nx", | ||
"package": "@nrwl/workspace", | ||
"name": "13-9-0-replace-tao-with-nx" | ||
"version": "15.0.0-beta.1", | ||
"description": "Replace implicitDependencies with namedInputs + target inputs", | ||
"implementation": "./src/migrations/update-15-0-0/migrate-to-inputs", | ||
"package": "nx", | ||
"name": "15.0.0-migrate-to-inputs" | ||
}, | ||
{ | ||
"version": "13.10.0-beta.0", | ||
"description": "Update the decorate-angular-cli script to require nx instead of @nrwl/cli", | ||
"cli": "nx", | ||
"implementation": "./src/migrations/update-13-10-0/update-decorate-cli", | ||
"package": "@nrwl/workspace", | ||
"name": "13-10-0-update-decorate-cli" | ||
"version": "15.0.0-beta.1", | ||
"description": "Prefix outputs with {workspaceRoot}/{projectRoot} if needed", | ||
"implementation": "./src/migrations/update-15-0-0/prefix-outputs", | ||
"package": "nx", | ||
"name": "15.0.0-prefix-outputs" | ||
}, | ||
{ | ||
"version": "13.10.0-beta.0", | ||
"description": "Update the tasks runner property to import it from the nx package instead of @nrwl/worksapce", | ||
"cli": "nx", | ||
"implementation": "./src/migrations/update-13-10-0/update-tasks-runner", | ||
"package": "@nrwl/workspace", | ||
"name": "13-10-0-update-tasks-runner" | ||
"version": "15.0.12-beta.1", | ||
"description": "Set project names in project.json files", | ||
"implementation": "./src/migrations/update-15-1-0/set-project-names", | ||
"package": "nx", | ||
"name": "15.1.0-set-project-names" | ||
}, | ||
{ | ||
"version": "15.0.0-beta.0", | ||
"cli": "nx", | ||
"version": "13.8.5-beta.1", | ||
"description": "Renames @nrwl/node:build to @nrwl/node:webpack", | ||
"factory": "./src/migrations/update-13-8-5/rename-build-to-webpack", | ||
"package": "@nrwl/node", | ||
"name": "rename-build-to-webpack" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "13.8.5-beta.1", | ||
"description": "Renames @nrwl/node:execute to @nrwl/node:node", | ||
"factory": "./src/migrations/update-13-8-5/rename-execute-to-node", | ||
"package": "@nrwl/node", | ||
"name": "rename-execute-to-node" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "13.8.5-beta.1", | ||
"description": "Renames @nrwl/node:package to @nrwl/js:tsc", | ||
"factory": "./src/migrations/update-13-8-5/update-package-to-tsc", | ||
"package": "@nrwl/node", | ||
"name": "update-package-to-tsc" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "13.8.5-beta.1", | ||
"description": "Renames @nrwl/js:node to @nrwl/node:node", | ||
"factory": "./src/migrations/update-13-8-5/update-node-executor", | ||
"package": "@nrwl/js", | ||
"name": "update-node-executor" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "13.8.5-beta.1", | ||
"description": "Adjust .swcrc to .lib.swcrc", | ||
"factory": "./src/migrations/update-13-8-5/update-swcrc", | ||
"package": "@nrwl/js", | ||
"name": "update-swcrc" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "13.10.1-beta.1", | ||
"description": "Update .lib.swcrc to exclude missing test files", | ||
"factory": "./src/migrations/update-13-10-1/update-lib-swcrc-exclude", | ||
"package": "@nrwl/js", | ||
"name": "update-swcrc-exclude" | ||
"description": "Stop hashing jest spec files and config files for build targets and dependent tasks", | ||
"factory": "./src/migrations/update-15-0-0/add-jest-inputs", | ||
"package": "@nrwl/jest", | ||
"name": "add-jest-inputs" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.