@nx/workspace 20.4.0-canary.20250116-a127177 → 20.4.0-canary.20250118-ee135b2
Sign up to get free protection for your applications and to get access to all the features.
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.20250118-ee135b2",
|
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.20250118-ee135b2",
|
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.20250118-ee135b2"
|
47
47
|
},
|
48
48
|
"publishConfig": {
|
49
49
|
"access": "public"
|
@@ -12,9 +12,11 @@ function updateEslintConfig(tree, schema, project) {
|
|
12
12
|
if (!tree.exists('.eslintrc.json') &&
|
13
13
|
!tree.exists('eslint.config.js') &&
|
14
14
|
!tree.exists('eslint.config.cjs') &&
|
15
|
+
!tree.exists('eslint.config.mjs') &&
|
15
16
|
!tree.exists('.eslintrc.base.json') &&
|
16
17
|
!tree.exists('eslint.base.config.js') &&
|
17
|
-
!tree.exists('eslint.base.config.cjs')
|
18
|
+
!tree.exists('eslint.base.config.cjs') &&
|
19
|
+
!tree.exists('eslint.base.config.mjs')) {
|
18
20
|
return;
|
19
21
|
}
|
20
22
|
try {
|
@@ -11,7 +11,7 @@ export interface Schema {
|
|
11
11
|
standaloneConfig?: boolean;
|
12
12
|
framework?: string;
|
13
13
|
packageManager?: PackageManager;
|
14
|
-
bundler?: 'vite' | 'webpack' | 'rspack' | 'esbuild';
|
14
|
+
bundler?: 'vite' | 'rsbuild' | 'webpack' | 'rspack' | 'esbuild';
|
15
15
|
docker?: boolean;
|
16
16
|
nextAppDir?: boolean;
|
17
17
|
nextSrcDir?: boolean;
|
@@ -72,7 +72,7 @@
|
|
72
72
|
"bundler": {
|
73
73
|
"description": "The bundler to use for building the application.",
|
74
74
|
"type": "string",
|
75
|
-
"enum": ["
|
75
|
+
"enum": ["vite", "rspack", "rsbuild", "esbuild", "webpack"],
|
76
76
|
"default": "vite"
|
77
77
|
},
|
78
78
|
"docker": {
|
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';
|