@nx/next 20.5.0-rc.4 → 20.5.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/next",
|
|
3
|
-
"version": "20.5.
|
|
3
|
+
"version": "20.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides:\n\n\n- Scaffolding for creating, building, serving, linting, and testing Next.js applications.\n\n- Integration with building, serving, and exporting a Next.js application.\n\n- Integration with React libraries within the workspace. \n\nWhen using Next.js in Nx, you get the out-of-the-box support for TypeScript, Playwright, Cypress, and Jest. No need to configure anything: watch mode, source maps, and typings just work.",
|
|
6
6
|
"repository": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"next": ">=14.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@nx/devkit": "20.5.
|
|
38
|
+
"@nx/devkit": "20.5.1",
|
|
39
39
|
"@babel/plugin-proposal-decorators": "^7.22.7",
|
|
40
40
|
"@svgr/webpack": "^8.1.0",
|
|
41
41
|
"copy-webpack-plugin": "^10.2.4",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"semver": "^7.5.3",
|
|
45
45
|
"tslib": "^2.3.0",
|
|
46
46
|
"webpack-merge": "^5.8.0",
|
|
47
|
-
"@nx/js": "20.5.
|
|
48
|
-
"@nx/eslint": "20.5.
|
|
49
|
-
"@nx/react": "20.5.
|
|
50
|
-
"@nx/web": "20.5.
|
|
51
|
-
"@nx/webpack": "20.5.
|
|
47
|
+
"@nx/js": "20.5.1",
|
|
48
|
+
"@nx/eslint": "20.5.1",
|
|
49
|
+
"@nx/react": "20.5.1",
|
|
50
|
+
"@nx/web": "20.5.1",
|
|
51
|
+
"@nx/webpack": "20.5.1",
|
|
52
52
|
"@phenomnomnominal/tsquery": "~5.0.1"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
@@ -54,7 +54,7 @@ async function applicationGeneratorInternal(host, schema) {
|
|
|
54
54
|
// If we are using the new TS solution
|
|
55
55
|
// We need to update the workspace file (package.json or pnpm-workspaces.yaml) to include the new project
|
|
56
56
|
if (options.isTsSolutionSetup) {
|
|
57
|
-
(0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.appProjectRoot);
|
|
57
|
+
await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.appProjectRoot);
|
|
58
58
|
}
|
|
59
59
|
const e2eTask = await (0, add_e2e_1.addE2e)(host, options);
|
|
60
60
|
tasks.push(e2eTask);
|
|
@@ -96,7 +96,7 @@ async function libraryGeneratorInternal(host, rawOptions) {
|
|
|
96
96
|
? ['eslint.config.js', 'eslint.config.cjs', 'eslint.config.mjs']
|
|
97
97
|
: undefined);
|
|
98
98
|
if (options.isUsingTsSolutionConfig) {
|
|
99
|
-
(0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.projectRoot);
|
|
99
|
+
await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.projectRoot);
|
|
100
100
|
}
|
|
101
101
|
(0, sort_fields_1.sortPackageJsonFields)(host, options.projectRoot);
|
|
102
102
|
if (!options.skipFormat) {
|