@nx/workspace 17.3.0-canary.20240126-2faaaf3 → 17.3.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/migrations.json +12 -0
- package/package.json +4 -4
- package/src/generators/move/lib/move-project-files.js +3 -3
- package/src/generators/move/lib/normalize-schema.js +1 -1
- package/src/generators/new/files-readme/README.md.template +2 -2
- package/src/utils/versions.d.ts +2 -2
- package/src/utils/versions.js +2 -2
package/migrations.json
CHANGED
|
@@ -73,6 +73,18 @@
|
|
|
73
73
|
"version": "~5.2.2"
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
|
+
},
|
|
77
|
+
"17.3.0": {
|
|
78
|
+
"version": "17.3.0-beta.10",
|
|
79
|
+
"x-prompt": "Do you want to update to TypeScript v5.3?",
|
|
80
|
+
"requires": {
|
|
81
|
+
"typescript": ">=5.2.0 <5.3.0"
|
|
82
|
+
},
|
|
83
|
+
"packages": {
|
|
84
|
+
"typescript": {
|
|
85
|
+
"version": "~5.3.2"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
76
88
|
}
|
|
77
89
|
}
|
|
78
90
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/workspace",
|
|
3
|
-
"version": "17.3.0-
|
|
3
|
+
"version": "17.3.0-rc.1",
|
|
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": {
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@nx/devkit": "17.3.0-
|
|
64
|
+
"@nx/devkit": "17.3.0-rc.1",
|
|
65
65
|
"chalk": "^4.1.0",
|
|
66
66
|
"enquirer": "~2.3.6",
|
|
67
67
|
"tslib": "^2.3.0",
|
|
68
68
|
"yargs-parser": "21.1.1",
|
|
69
|
-
"nx": "17.3.0-
|
|
70
|
-
"@nrwl/workspace": "17.3.0-
|
|
69
|
+
"nx": "17.3.0-rc.1",
|
|
70
|
+
"@nrwl/workspace": "17.3.0-rc.1"
|
|
71
71
|
},
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
@@ -28,9 +28,9 @@ function moveProjectFiles(tree, schema, project) {
|
|
|
28
28
|
'index.html', // Vite
|
|
29
29
|
];
|
|
30
30
|
const knownRootProjectFolders = [
|
|
31
|
-
'src',
|
|
32
|
-
'app',
|
|
33
|
-
'pages',
|
|
31
|
+
'src', // Most apps/libs
|
|
32
|
+
'app', // Remix, Next.js
|
|
33
|
+
'pages', // Next.js
|
|
34
34
|
'public', // Vite, Remix, Next.js
|
|
35
35
|
];
|
|
36
36
|
const isKnownRootProjectFile = (file) => {
|
|
@@ -56,11 +56,11 @@ Nx comes with local caching already built-in (check your `nx.json`). On CI you m
|
|
|
56
56
|
- [Set up task distribution across multiple machines](https://nx.dev/nx-cloud/features/distribute-task-execution)
|
|
57
57
|
- [Learn more how to setup CI](https://nx.dev/recipes/ci)
|
|
58
58
|
|
|
59
|
-
## Explore the Graph
|
|
59
|
+
## Explore the Project Graph
|
|
60
60
|
Run `nx graph` to show the graph of the workspace.
|
|
61
61
|
It will show tasks that you can run with Nx.
|
|
62
62
|
|
|
63
|
-
- [Learn more about Exploring the Graph](https://nx.dev/core-features/explore-graph)
|
|
63
|
+
- [Learn more about Exploring the Project Graph](https://nx.dev/core-features/explore-graph)
|
|
64
64
|
|
|
65
65
|
## Connect with us!
|
|
66
66
|
|
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 = "~17.
|
|
2
|
+
export declare const typescriptVersion = "~5.3.2";
|
|
3
|
+
export declare const angularCliVersion = "~17.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.3.2';
|
|
6
6
|
// TODO: remove when preset generation is reworked and
|
|
7
7
|
// deps are not installed from workspace
|
|
8
|
-
exports.angularCliVersion = '~17.
|
|
8
|
+
exports.angularCliVersion = '~17.1.0';
|