Skip to content

Commit d9b3f5f

Browse files
chore(deps): update nx + node24 (#22)
1 parent 97b7397 commit d9b3f5f

File tree

4 files changed

+282
-803
lines changed

4 files changed

+282
-803
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535
uses: sketch7/.github/.github/workflows/node-lib.yml@node-libs-v1
3636
with:
3737
package-manager: "pnpm"
38-
node-version: "20"
38+
node-version: ""
39+
node-version-file: "package.json"
3940
publishable: ${{ contains(fromJSON('["develop", "master", "workflow"]'), github.ref_name) || endsWith(github.ref_name, '.x') || github.event.inputs.publish == 'true' }}
4041
force-preid: ${{ github.event.inputs.force-prerelease == 'true' }}
4142
preid-branches: "master,workflow"

migrations.json

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
11
{
22
"migrations": [
33
{
4-
"version": "22.0.0-beta.1",
5-
"description": "Updates release version config based on the breaking changes in Nx v22",
6-
"implementation": "./src/migrations/update-22-0-0/release-version-config-changes",
4+
"cli": "nx",
5+
"version": "22.1.0-beta.5",
6+
"description": "Updates the nx wrapper.",
7+
"implementation": "./src/migrations/update-22-1-0/update-nx-wrapper",
78
"package": "nx",
8-
"name": "22-0-0-release-version-config-changes"
9+
"name": "22-1-0-update-nx-wrapper"
910
},
1011
{
11-
"version": "22.0.0-beta.2",
12-
"description": "Consolidates releaseTag* options into nested releaseTag object structure",
13-
"implementation": "./src/migrations/update-22-0-0/consolidate-release-tag-config",
14-
"package": "nx",
15-
"name": "22-0-0-consolidate-release-tag-config"
16-
},
17-
{
18-
"version": "22.0.0-beta.0",
19-
"description": "Remove the deprecated `external` and `externalBuildTargets` options from the `@nx/js:swc` and `@nx/js:tsc` executors.",
20-
"factory": "./src/migrations/update-22-0-0/remove-external-options-from-js-executors",
12+
"version": "22.1.0-rc.1",
13+
"description": "Removes redundant TypeScript project references from project's tsconfig.json files when runtime tsconfig files (e.g., tsconfig.lib.json, tsconfig.app.json) exist.",
14+
"factory": "./src/migrations/update-22-1-0/remove-redundant-ts-project-references",
2115
"package": "@nx/js",
22-
"name": "remove-external-options-from-js-executors"
16+
"name": "remove-redundant-ts-project-references"
2317
}
2418
]
2519
}

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"version": "4.0.0",
44
"packageManager": "[email protected]",
55
"engines": {
6-
"node": ">=22.20.0",
6+
"node": ">=24.11.1",
77
"pnpm": ">=9.0.0",
88
"npm": ">=10.0.0"
99
},
1010
"volta": {
11-
"node": "22.20.0"
11+
"node": "24.11.1"
1212
},
1313
"license": "MIT",
1414
"scripts": {
@@ -42,13 +42,13 @@
4242
"@angular/cli": "~20.3.7",
4343
"@angular/compiler-cli": "20.3.7",
4444
"@eslint/js": "^9.38.0",
45-
"@nx/angular": "22.0.1",
46-
"@nx/eslint": "22.0.1",
47-
"@nx/eslint-plugin": "22.0.1",
48-
"@nx/jest": "22.0.1",
49-
"@nx/js": "22.0.1",
50-
"@nx/web": "22.0.1",
51-
"@nx/workspace": "22.0.1",
45+
"@nx/angular": "22.1.0",
46+
"@nx/eslint": "22.1.0",
47+
"@nx/eslint-plugin": "22.1.0",
48+
"@nx/jest": "22.1.0",
49+
"@nx/js": "22.1.0",
50+
"@nx/web": "22.1.0",
51+
"@nx/workspace": "22.1.0",
5252
"@schematics/angular": "~20.3.7",
5353
"@stylistic/eslint-plugin-ts": "^3.1.0",
5454
"@swc-node/register": "~1.11.1",
@@ -67,7 +67,7 @@
6767
"jsonc-eslint-parser": "^2.4.1",
6868
"jsdom": "^27.0.1",
6969
"ng-packagr": "~20.3.0",
70-
"nx": "22.0.1",
70+
"nx": "22.1.0",
7171
"postcss": "^8.5.6",
7272
"postcss-url": "~10.1.3",
7373
"prettier": "^2.8.8",

0 commit comments

Comments
 (0)