Skip to content

Commit 4f8d56b

Browse files
committed
chore(repo): upgrade nx
1 parent e7d2f1d commit 4f8d56b

File tree

4 files changed

+611
-468
lines changed

4 files changed

+611
-468
lines changed

migrations.json

Lines changed: 47 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,62 @@
11
{
22
"migrations": [
33
{
4-
"cli": "nx",
5-
"version": "20.8.0-beta.0",
6-
"requires": { "cypress": ">=14.0.0" },
7-
"description": "Replaces the `experimentalSkipDomainInjection` configuration option with the new `injectDocumentDomain` configuration option.",
8-
"implementation": "./src/migrations/update-20-8-0/set-inject-document-domain",
9-
"package": "@nx/cypress",
10-
"name": "set-inject-document-domain"
4+
"version": "21.0.0-beta.8",
5+
"description": "Removes the legacy cache configuration from nx.json",
6+
"implementation": "./src/migrations/update-21-0-0/remove-legacy-cache",
7+
"package": "nx",
8+
"name": "remove-legacy-cache"
119
},
1210
{
13-
"cli": "nx",
14-
"version": "20.8.0-beta.0",
15-
"requires": { "cypress": ">=14.0.0" },
16-
"description": "Removes the `experimentalFetchPolyfill` configuration option.",
17-
"implementation": "./src/migrations/update-20-8-0/remove-experimental-fetch-polyfill",
11+
"version": "21.0.0-beta.8",
12+
"description": "Removes the legacy cache configuration from nx.json",
13+
"implementation": "./src/migrations/update-21-0-0/remove-custom-tasks-runner",
14+
"package": "nx",
15+
"name": "remove-custom-tasks-runner"
16+
},
17+
{
18+
"version": "21.0.0-beta.11",
19+
"description": "Updates release version config based on the breaking changes in Nx v21",
20+
"implementation": "./src/migrations/update-21-0-0/release-version-config-changes",
21+
"package": "nx",
22+
"name": "release-version-config-changes"
23+
},
24+
{
25+
"version": "21.0.0-beta.11",
26+
"description": "Updates release changelog config based on the breaking changes in Nx v21",
27+
"implementation": "./src/migrations/update-21-0-0/release-changelog-config-changes",
28+
"package": "nx",
29+
"name": "release-changelog-config-changes"
30+
},
31+
{
32+
"version": "21.0.0-beta.10",
33+
"description": "Removes the `tsConfig` and `copyFiles` options from the `@nx/cypress:cypress` executor.",
34+
"implementation": "./src/migrations/update-21-0-0/remove-tsconfig-and-copy-files-options-from-cypress-executor",
1835
"package": "@nx/cypress",
19-
"name": "remove-experimental-fetch-polyfill"
36+
"name": "remove-tsconfig-and-copy-files-options-from-cypress-executor"
2037
},
2138
{
2239
"cli": "nx",
23-
"version": "20.8.0-beta.0",
24-
"requires": { "cypress": ">=14.0.0" },
25-
"description": "Replaces the `experimentalJustInTimeCompile` configuration option with the new `justInTimeCompile` configuration option.",
26-
"implementation": "./src/migrations/update-20-8-0/replace-experimental-just-in-time-compile",
27-
"package": "@nx/cypress",
28-
"name": "replace-experimental-just-in-time-compile"
40+
"version": "21.0.0-beta.9",
41+
"description": "Replace usage of `getJestProjects` with `getJestProjectsAsync`.",
42+
"implementation": "./src/migrations/update-21-0-0/replace-getJestProjects-with-getJestProjectsAsync",
43+
"package": "@nx/jest",
44+
"name": "replace-getJestProjects-with-getJestProjectsAsync-v21"
45+
},
46+
{
47+
"version": "21.0.0-beta.10",
48+
"description": "Remove the previously deprecated and unused `tsConfig` option from the `@nx/jest:jest` executor.",
49+
"implementation": "./src/migrations/update-21-0-0/remove-tsconfig-option-from-jest-executor",
50+
"package": "@nx/jest",
51+
"name": "remove-tsconfig-option-from-jest-executor"
2952
},
3053
{
3154
"cli": "nx",
32-
"version": "20.8.0-beta.0",
33-
"requires": { "cypress": ">=14.0.0" },
34-
"description": "Updates the module specifier for the Component Testing `mount` function.",
35-
"implementation": "./src/migrations/update-20-8-0/update-component-testing-mount-imports",
36-
"package": "@nx/cypress",
37-
"name": "update-component-testing-mount-imports"
55+
"version": "21.0.0-beta.3",
56+
"description": "Set the `continuous` option to `true` for continuous tasks.",
57+
"factory": "./src/migrations/update-21-0-0/set-continuous-option",
58+
"package": "@nx/angular",
59+
"name": "set-continuous-option"
3860
}
3961
]
4062
}

nx.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,9 @@
151151
"projects": ["core", "cannon", "postprocessing", "soba", "rapier", "plugin", "tweakpane", "theatre"],
152152
"version": {
153153
"preVersionCommand": "npm run package",
154-
"generatorOptions": {
155-
"packageRoot": "dist/libs/{projectName}",
156-
"currentVersionResolver": "git-tag"
157-
}
154+
"currentVersionResolver": "git-tag",
155+
"preserveLocalDependencyProtocols": false,
156+
"manifestRootsToUpdate": ["dist/libs/{projectName}"]
158157
},
159158
"conventionalCommits": {
160159
"types": {

0 commit comments

Comments
 (0)