@nx/next 17.2.5 → 17.2.7
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/README.md +4 -9
- package/migrations.json +6 -0
- package/package.json +8 -8
- package/src/executors/export/export.impl.js +6 -4
- package/src/generators/application/lib/add-linting.js +0 -8
- package/src/generators/page/page.js +18 -2
- package/src/generators/page/schema.d.ts +1 -1
- package/src/migrations/update-17-2-7/remove-eslint-rules-patch.d.ts +2 -0
- package/src/migrations/update-17-2-7/remove-eslint-rules-patch.js +13 -0
- package/src/plugins/plugin.js +6 -1
- package/src/utils/versions.d.ts +2 -2
- package/src/utils/versions.js +2 -2
package/README.md
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
<p style="text-align: center;">
|
|
2
|
-
<picture>
|
|
3
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-dark.svg">
|
|
4
|
-
<img alt="Nx - Smart Monorepos · Fast CI" src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-light.svg" width="100%">
|
|
5
|
-
</picture>
|
|
6
|
-
</p>
|
|
1
|
+
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx.png" width="600" alt="Nx - Smart, Fast and Extensible Build System"></p>
|
|
7
2
|
|
|
8
3
|
<div style="text-align: center;">
|
|
9
4
|
|
|
@@ -20,9 +15,9 @@
|
|
|
20
15
|
|
|
21
16
|
<hr>
|
|
22
17
|
|
|
23
|
-
# Nx: Smart
|
|
18
|
+
# Nx: Smart, Fast and Extensible Build System
|
|
24
19
|
|
|
25
|
-
Nx is a build system with
|
|
20
|
+
Nx is a next generation build system with first class monorepo support and powerful integrations.
|
|
26
21
|
|
|
27
22
|
This package is a [Next.js plugin for Nx](https://nx.dev/next/overview).
|
|
28
23
|
|
|
@@ -64,5 +59,5 @@ npx nx@latest init
|
|
|
64
59
|
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
|
65
60
|
|
|
66
61
|
<p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-courses-and-videos.svg"
|
|
67
|
-
width="100%" alt="Nx - Smart
|
|
62
|
+
width="100%" alt="Nx - Smart, Fast and Extensible Build System"></a></p>
|
|
68
63
|
|
package/migrations.json
CHANGED
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
"version": "16.4.0-beta.3",
|
|
24
24
|
"description": "Update package.json moving @nx/next from dependency to devDependency",
|
|
25
25
|
"implementation": "./src/migrations/update-16-4-0/update-nx-next-dependency"
|
|
26
|
+
},
|
|
27
|
+
"update-17-2-7": {
|
|
28
|
+
"cli": "nx",
|
|
29
|
+
"version": "17.2.7",
|
|
30
|
+
"description": "Remove patched eslint rule for @next/next/no-html-link-for-pages",
|
|
31
|
+
"implementation": "./src/migrations/update-17-2-7/remove-eslint-rules-patch"
|
|
26
32
|
}
|
|
27
33
|
},
|
|
28
34
|
"packageJsonUpdates": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/next",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.2.7",
|
|
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, Cypress, and Jest. No need to configure anything: watch mode, source maps, and typings just work.",
|
|
6
6
|
"repository": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"next": ">=13.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@nx/devkit": "
|
|
37
|
+
"@nx/devkit": "17.2.7",
|
|
38
38
|
"@babel/plugin-proposal-decorators": "^7.22.7",
|
|
39
39
|
"@svgr/webpack": "^8.0.1",
|
|
40
40
|
"chalk": "^4.1.0",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"url-loader": "^4.1.1",
|
|
46
46
|
"tslib": "^2.3.0",
|
|
47
47
|
"webpack-merge": "^5.8.0",
|
|
48
|
-
"@nx/js": "
|
|
49
|
-
"@nx/eslint": "
|
|
50
|
-
"@nx/react": "
|
|
51
|
-
"@nx/web": "
|
|
52
|
-
"@nx/workspace": "
|
|
53
|
-
"@nrwl/next": "
|
|
48
|
+
"@nx/js": "17.2.7",
|
|
49
|
+
"@nx/eslint": "17.2.7",
|
|
50
|
+
"@nx/react": "17.2.7",
|
|
51
|
+
"@nx/web": "17.2.7",
|
|
52
|
+
"@nx/workspace": "17.2.7",
|
|
53
|
+
"@nrwl/next": "17.2.7"
|
|
54
54
|
},
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const devkit_1 = require("@nx/devkit");
|
|
4
4
|
const export_1 = require("next/dist/export");
|
|
5
|
+
const buildable_libs_utils_1 = require("@nx/js/src/utils/buildable-libs-utils");
|
|
5
6
|
const nextTrace = require("next/dist/trace");
|
|
6
7
|
const os_1 = require("os");
|
|
7
8
|
const child_process_1 = require("child_process");
|
|
8
9
|
const chalk = require("chalk");
|
|
9
|
-
const semver_1 = require("semver");
|
|
10
10
|
// platform specific command name
|
|
11
11
|
const pmCmd = (0, os_1.platform)() === 'win32' ? `npx.cmd` : 'npx';
|
|
12
12
|
/**
|
|
@@ -22,9 +22,11 @@ const pmCmd = (0, os_1.platform)() === 'win32' ? `npx.cmd` : 'npx';
|
|
|
22
22
|
* Read https://nextjs.org/docs/pages/building-your-application/deploying/static-exports
|
|
23
23
|
**/
|
|
24
24
|
async function exportExecutor(options, context) {
|
|
25
|
-
|
|
26
|
-
if (
|
|
27
|
-
|
|
25
|
+
let dependencies = [];
|
|
26
|
+
if (!options.buildLibsFromSource) {
|
|
27
|
+
const result = (0, buildable_libs_utils_1.calculateProjectBuildableDependencies)(context.taskGraph, context.projectGraph, context.root, context.projectName, 'build', // this should be generalized
|
|
28
|
+
context.configurationName);
|
|
29
|
+
dependencies = result.dependencies;
|
|
28
30
|
}
|
|
29
31
|
// Returns { project: ProjectGraphNode; target: string; configuration?: string;}
|
|
30
32
|
const buildTarget = (0, devkit_1.parseTargetString)(options.buildTarget, context);
|
|
@@ -23,14 +23,6 @@ async function addLinting(host, options) {
|
|
|
23
23
|
'next',
|
|
24
24
|
'next/core-web-vitals',
|
|
25
25
|
]);
|
|
26
|
-
// Turn off @next/next/no-html-link-for-pages since there is an issue with nextjs throwing linting errors
|
|
27
|
-
// TODO(nicholas): remove after Vercel updates nextjs linter to only lint ["*.ts", "*.tsx", "*.js", "*.jsx"]
|
|
28
|
-
(0, eslint_file_1.addOverrideToLintConfig)(host, options.appProjectRoot, {
|
|
29
|
-
files: ['*.*'],
|
|
30
|
-
rules: {
|
|
31
|
-
'@next/next/no-html-link-for-pages': 'off',
|
|
32
|
-
},
|
|
33
|
-
}, { insertAtTheEnd: false });
|
|
34
26
|
(0, eslint_file_1.updateOverrideInLintConfig)(host, options.appProjectRoot, (o) => Array.isArray(o.files) &&
|
|
35
27
|
o.files.some((f) => f.match(/\*\.ts$/)) &&
|
|
36
28
|
o.files.some((f) => f.match(/\*\.tsx$/)) &&
|
|
@@ -43,18 +43,34 @@ exports.pageGeneratorInternal = pageGeneratorInternal;
|
|
|
43
43
|
async function normalizeOptions(host, options) {
|
|
44
44
|
let isAppRouter;
|
|
45
45
|
let derivedDirectory;
|
|
46
|
+
let routerDirectory;
|
|
46
47
|
if (options.project) {
|
|
47
48
|
// Legacy behavior, detect app vs page router from specified project.
|
|
48
49
|
// TODO(v18): remove this logic
|
|
49
50
|
const project = (0, devkit_1.readProjectConfiguration)(host, options.project);
|
|
50
51
|
// app/ is a reserved folder in nextjs so it is safe to check it's existence
|
|
51
|
-
isAppRouter =
|
|
52
|
-
|
|
52
|
+
isAppRouter =
|
|
53
|
+
host.exists(`${project.root}/app`) ||
|
|
54
|
+
host.exists(`${project.root}/src/app`);
|
|
55
|
+
routerDirectory = isAppRouter ? 'app' : 'pages';
|
|
53
56
|
derivedDirectory = options.directory
|
|
54
57
|
? `${routerDirectory}/${options.directory}`
|
|
55
58
|
: `${routerDirectory}`;
|
|
56
59
|
}
|
|
57
60
|
else {
|
|
61
|
+
// Get the project name first so we can determine the router directory
|
|
62
|
+
const { project: determinedProjectName } = await (0, artifact_name_and_directory_utils_1.determineArtifactNameAndDirectoryOptions)(host, {
|
|
63
|
+
artifactType: 'page',
|
|
64
|
+
callingGenerator: '@nx/next:page',
|
|
65
|
+
name: options.name,
|
|
66
|
+
directory: options.directory,
|
|
67
|
+
});
|
|
68
|
+
const project = (0, devkit_1.readProjectConfiguration)(host, determinedProjectName);
|
|
69
|
+
// app/ is a reserved folder in nextjs so it is safe to check it's existence
|
|
70
|
+
isAppRouter =
|
|
71
|
+
host.exists(`${project.root}/app`) ||
|
|
72
|
+
host.exists(`${project.root}/src/app`);
|
|
73
|
+
routerDirectory = isAppRouter ? 'app' : 'pages';
|
|
58
74
|
// New behavior, use directory as is without detecting whether we're using app or pages router.
|
|
59
75
|
derivedDirectory = options.directory;
|
|
60
76
|
}
|
|
@@ -5,7 +5,7 @@ export interface Schema {
|
|
|
5
5
|
/**
|
|
6
6
|
* @deprecated Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx v18.
|
|
7
7
|
*/
|
|
8
|
-
project
|
|
8
|
+
project?: string;
|
|
9
9
|
style: SupportedStyles;
|
|
10
10
|
directory?: string;
|
|
11
11
|
fileName?: string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const devkit_1 = require("@nx/devkit");
|
|
4
|
+
const eslint_file_1 = require("@nx/eslint/src/generators/utils/eslint-file");
|
|
5
|
+
async function update(tree) {
|
|
6
|
+
const projects = (0, devkit_1.getProjects)(tree);
|
|
7
|
+
projects.forEach((project) => {
|
|
8
|
+
(0, eslint_file_1.updateOverrideInLintConfig)(tree, project.root, (o) => o.rules?.['@next/next/no-html-link-for-pages'] &&
|
|
9
|
+
o.files?.includes('**/*.*'), (o) => undefined);
|
|
10
|
+
});
|
|
11
|
+
await (0, devkit_1.formatFiles)(tree);
|
|
12
|
+
}
|
|
13
|
+
exports.default = update;
|
package/src/plugins/plugin.js
CHANGED
|
@@ -107,7 +107,12 @@ async function getOutputs(projectRoot, nextConfig) {
|
|
|
107
107
|
// If nextConfig is an object, directly use its 'distDir' property.
|
|
108
108
|
dir = nextConfig.distDir;
|
|
109
109
|
}
|
|
110
|
-
|
|
110
|
+
if (projectRoot === '.') {
|
|
111
|
+
return `{projectRoot}/${dir}`;
|
|
112
|
+
}
|
|
113
|
+
else {
|
|
114
|
+
return `{workspaceRoot}/${projectRoot}/${dir}`;
|
|
115
|
+
}
|
|
111
116
|
}
|
|
112
117
|
function getNextConfig(configFilePath, context) {
|
|
113
118
|
const resolvedPath = (0, path_1.join)(context.workspaceRoot, configFilePath);
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const nxVersion: any;
|
|
2
|
-
export declare const nextVersion = "
|
|
3
|
-
export declare const eslintConfigNextVersion = "
|
|
2
|
+
export declare const nextVersion = "13.4.4";
|
|
3
|
+
export declare const eslintConfigNextVersion = "13.4.4";
|
|
4
4
|
export declare const sassVersion = "1.62.1";
|
|
5
5
|
export declare const lessLoader = "11.1.0";
|
|
6
6
|
export declare const emotionServerVersion = "11.11.0";
|
package/src/utils/versions.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.tsLibVersion = exports.babelPluginStyledComponentsVersion = exports.emotionServerVersion = exports.lessLoader = exports.sassVersion = exports.eslintConfigNextVersion = exports.nextVersion = exports.nxVersion = void 0;
|
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
|
5
|
-
exports.nextVersion = '
|
|
6
|
-
exports.eslintConfigNextVersion = '
|
|
5
|
+
exports.nextVersion = '13.4.4';
|
|
6
|
+
exports.eslintConfigNextVersion = '13.4.4';
|
|
7
7
|
exports.sassVersion = '1.62.1';
|
|
8
8
|
exports.lessLoader = '11.1.0';
|
|
9
9
|
exports.emotionServerVersion = '11.11.0';
|