@nrwl/next 14.7.10 → 14.7.11
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/CHANGELOG.md +1 -1
- package/migrations.json +17 -0
- package/package.json +9 -9
- package/src/utils/versions.d.ts +3 -3
- package/src/utils/versions.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [14.7.
|
|
6
|
+
## [14.7.11](https://github.com/nrwl/nx/compare/14.7.10...14.7.11) (2022-09-22)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @nrwl/next
|
package/migrations.json
CHANGED
|
@@ -359,6 +359,23 @@
|
|
|
359
359
|
"alwaysAddToPackageJson": false
|
|
360
360
|
}
|
|
361
361
|
}
|
|
362
|
+
},
|
|
363
|
+
"14.7.10": {
|
|
364
|
+
"version": "14.7.10-beta.1",
|
|
365
|
+
"packages": {
|
|
366
|
+
"next": {
|
|
367
|
+
"version": "12.3.1",
|
|
368
|
+
"alwaysAddToPackageJson": false
|
|
369
|
+
},
|
|
370
|
+
"eslint-config-next": {
|
|
371
|
+
"version": "12.3.1",
|
|
372
|
+
"alwaysAddToPackageJson": false
|
|
373
|
+
},
|
|
374
|
+
"sass": {
|
|
375
|
+
"version": "1.55.0",
|
|
376
|
+
"alwaysAddToPackageJson": false
|
|
377
|
+
}
|
|
378
|
+
}
|
|
362
379
|
}
|
|
363
380
|
}
|
|
364
381
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/next",
|
|
3
|
-
"version": "14.7.
|
|
3
|
+
"version": "14.7.11",
|
|
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": {
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@babel/plugin-proposal-decorators": "^7.14.5",
|
|
38
|
-
"@nrwl/cypress": "14.7.
|
|
39
|
-
"@nrwl/devkit": "14.7.
|
|
40
|
-
"@nrwl/jest": "14.7.
|
|
41
|
-
"@nrwl/linter": "14.7.
|
|
42
|
-
"@nrwl/react": "14.7.
|
|
43
|
-
"@nrwl/webpack": "14.7.
|
|
44
|
-
"@nrwl/workspace": "14.7.
|
|
38
|
+
"@nrwl/cypress": "14.7.11",
|
|
39
|
+
"@nrwl/devkit": "14.7.11",
|
|
40
|
+
"@nrwl/jest": "14.7.11",
|
|
41
|
+
"@nrwl/linter": "14.7.11",
|
|
42
|
+
"@nrwl/react": "14.7.11",
|
|
43
|
+
"@nrwl/webpack": "14.7.11",
|
|
44
|
+
"@nrwl/workspace": "14.7.11",
|
|
45
45
|
"@svgr/webpack": "^6.1.2",
|
|
46
46
|
"chalk": "4.1.0",
|
|
47
47
|
"dotenv": "~10.0.0",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "e0e58349af1231eb73f3be38220128a0f8aba3b1"
|
|
60
60
|
}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const nxVersion: any;
|
|
2
|
-
export declare const nextVersion = "12.
|
|
3
|
-
export declare const eslintConfigNextVersion = "12.
|
|
4
|
-
export declare const sassVersion = "1.
|
|
2
|
+
export declare const nextVersion = "12.3.1";
|
|
3
|
+
export declare const eslintConfigNextVersion = "12.3.1";
|
|
4
|
+
export declare const sassVersion = "1.55.0";
|
|
5
5
|
export declare const lessLoader = "11.0.0";
|
|
6
6
|
export declare const stylusLoader = "7.0.0";
|
|
7
7
|
export declare const emotionServerVersion = "11.10.0";
|
package/src/utils/versions.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.tsLibVersion = exports.babelPluginStyledComponentsVersion = exports.emotionServerVersion = exports.stylusLoader = exports.lessLoader = exports.sassVersion = exports.eslintConfigNextVersion = exports.nextVersion = exports.nxVersion = void 0;
|
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
|
5
|
-
exports.nextVersion = '12.
|
|
6
|
-
exports.eslintConfigNextVersion = '12.
|
|
7
|
-
exports.sassVersion = '1.
|
|
5
|
+
exports.nextVersion = '12.3.1';
|
|
6
|
+
exports.eslintConfigNextVersion = '12.3.1';
|
|
7
|
+
exports.sassVersion = '1.55.0';
|
|
8
8
|
exports.lessLoader = '11.0.0';
|
|
9
9
|
exports.stylusLoader = '7.0.0';
|
|
10
10
|
exports.emotionServerVersion = '11.10.0';
|