@nx/next 19.8.0 → 19.8.2
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": "19.8.
|
|
3
|
+
"version": "19.8.2",
|
|
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,25 +35,25 @@
|
|
|
35
35
|
"next": ">=14.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@nx/devkit": "19.8.
|
|
38
|
+
"@nx/devkit": "19.8.2",
|
|
39
39
|
"@babel/plugin-proposal-decorators": "^7.22.7",
|
|
40
40
|
"@svgr/webpack": "^8.0.1",
|
|
41
|
-
"chalk": "^4.1.0",
|
|
42
41
|
"copy-webpack-plugin": "^10.2.4",
|
|
43
42
|
"file-loader": "^6.2.0",
|
|
44
43
|
"fs-extra": "^11.1.0",
|
|
45
44
|
"ignore": "^5.0.4",
|
|
45
|
+
"picocolors": "^1.1.0",
|
|
46
46
|
"semver": "^7.5.3",
|
|
47
47
|
"tslib": "^2.3.0",
|
|
48
48
|
"webpack-merge": "^5.8.0",
|
|
49
|
-
"@nx/js": "19.8.
|
|
50
|
-
"@nx/eslint": "19.8.
|
|
51
|
-
"@nx/react": "19.8.
|
|
52
|
-
"@nx/web": "19.8.
|
|
53
|
-
"@nx/webpack": "19.8.
|
|
54
|
-
"@nx/workspace": "19.8.
|
|
49
|
+
"@nx/js": "19.8.2",
|
|
50
|
+
"@nx/eslint": "19.8.2",
|
|
51
|
+
"@nx/react": "19.8.2",
|
|
52
|
+
"@nx/web": "19.8.2",
|
|
53
|
+
"@nx/webpack": "19.8.2",
|
|
54
|
+
"@nx/workspace": "19.8.2",
|
|
55
55
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
56
|
-
"@nrwl/next": "19.8.
|
|
56
|
+
"@nrwl/next": "19.8.2"
|
|
57
57
|
},
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
@@ -6,7 +6,7 @@ const export_1 = require("next/dist/export");
|
|
|
6
6
|
const nextTrace = require("next/dist/trace");
|
|
7
7
|
const os_1 = require("os");
|
|
8
8
|
const child_process_1 = require("child_process");
|
|
9
|
-
const
|
|
9
|
+
const pc = require("picocolors");
|
|
10
10
|
const semver_1 = require("semver");
|
|
11
11
|
// platform specific command name
|
|
12
12
|
const pmCmd = (0, os_1.platform)() === 'win32' ? `npx.cmd` : 'npx';
|
|
@@ -37,7 +37,7 @@ async function exportExecutor(options, context) {
|
|
|
37
37
|
});
|
|
38
38
|
}
|
|
39
39
|
catch {
|
|
40
|
-
throw new Error(`Build target failed: ${
|
|
40
|
+
throw new Error(`Build target failed: ${pc.bold(options.buildTarget)}`);
|
|
41
41
|
}
|
|
42
42
|
const buildOptions = (0, devkit_1.readTargetOptions)(buildTarget, context);
|
|
43
43
|
const projectRoot = context.projectGraph.nodes[context.projectName].data.root;
|