@nx/workspace 20.4.0-canary.20250115-0ae8665 → 20.4.0-canary.20250117-cba25da
Sign up to get free protection for your applications and to get access to all the features.
- package/migrations.json +13 -0
- package/package.json +3 -3
- package/src/utils/versions.d.ts +2 -2
- package/src/utils/versions.js +2 -2
package/migrations.json
CHANGED
@@ -63,6 +63,19 @@
|
|
63
63
|
"alwaysAddToPackageJson": false
|
64
64
|
}
|
65
65
|
}
|
66
|
+
},
|
67
|
+
"20.4.0": {
|
68
|
+
"version": "20.4.0-beta.1",
|
69
|
+
"x-prompt": "Do you want to update to TypeScript v5.7?",
|
70
|
+
"requires": {
|
71
|
+
"typescript": ">=5.6.0 <5.7.0"
|
72
|
+
},
|
73
|
+
"packages": {
|
74
|
+
"typescript": {
|
75
|
+
"version": "~5.7.2",
|
76
|
+
"alwaysAddToPackageJson": false
|
77
|
+
}
|
78
|
+
}
|
66
79
|
}
|
67
80
|
}
|
68
81
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/workspace",
|
3
|
-
"version": "20.4.0-canary.
|
3
|
+
"version": "20.4.0-canary.20250117-cba25da",
|
4
4
|
"private": false,
|
5
5
|
"description": "The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.",
|
6
6
|
"repository": {
|
@@ -38,12 +38,12 @@
|
|
38
38
|
}
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
|
-
"@nx/devkit": "20.4.0-canary.
|
41
|
+
"@nx/devkit": "20.4.0-canary.20250117-cba25da",
|
42
42
|
"chalk": "^4.1.0",
|
43
43
|
"enquirer": "~2.3.6",
|
44
44
|
"tslib": "^2.3.0",
|
45
45
|
"yargs-parser": "21.1.1",
|
46
|
-
"nx": "20.4.0-canary.
|
46
|
+
"nx": "20.4.0-canary.20250117-cba25da"
|
47
47
|
},
|
48
48
|
"publishConfig": {
|
49
49
|
"access": "public"
|
package/src/utils/versions.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
export declare const nxVersion: any;
|
2
|
-
export declare const typescriptVersion = "~5.
|
3
|
-
export declare const angularCliVersion = "~19.
|
2
|
+
export declare const typescriptVersion = "~5.7.2";
|
3
|
+
export declare const angularCliVersion = "~19.1.0";
|
package/src/utils/versions.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.angularCliVersion = exports.typescriptVersion = exports.nxVersion = void 0;
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
5
|
-
exports.typescriptVersion = '~5.
|
5
|
+
exports.typescriptVersion = '~5.7.2';
|
6
6
|
// TODO: remove when preset generation is reworked and
|
7
7
|
// deps are not installed from workspace
|
8
|
-
exports.angularCliVersion = '~19.
|
8
|
+
exports.angularCliVersion = '~19.1.0';
|