@nx/node 17.3.1 → 17.3.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/migrations.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/node",
|
|
3
|
-
"version": "17.3.
|
|
3
|
+
"version": "17.3.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Node Plugin for Nx contains generators to manage Node applications within an Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"tslib": "^2.3.0",
|
|
34
|
-
"@nx/devkit": "17.3.
|
|
35
|
-
"@nx/jest": "17.3.
|
|
36
|
-
"@nx/js": "17.3.
|
|
37
|
-
"@nx/eslint": "17.3.
|
|
38
|
-
"@nrwl/node": "17.3.
|
|
34
|
+
"@nx/devkit": "17.3.2",
|
|
35
|
+
"@nx/jest": "17.3.2",
|
|
36
|
+
"@nx/js": "17.3.2",
|
|
37
|
+
"@nx/eslint": "17.3.2",
|
|
38
|
+
"@nrwl/node": "17.3.2"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
@@ -295,7 +295,9 @@ async function applicationGeneratorInternal(tree, schema) {
|
|
|
295
295
|
tasks.push(webpackInitTask);
|
|
296
296
|
if (!options.skipPackageJson) {
|
|
297
297
|
const { ensureDependencies } = await Promise.resolve().then(() => require('@nx/webpack/src/utils/ensure-dependencies'));
|
|
298
|
-
tasks.push(ensureDependencies(tree, {
|
|
298
|
+
tasks.push(ensureDependencies(tree, {
|
|
299
|
+
uiFramework: options.isNest ? 'none' : 'react',
|
|
300
|
+
}));
|
|
299
301
|
}
|
|
300
302
|
}
|
|
301
303
|
addAppFiles(tree, options);
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -9,4 +9,4 @@ export declare const fastifyVersion = "~4.13.0";
|
|
|
9
9
|
export declare const fastifyAutoloadVersion = "~5.7.1";
|
|
10
10
|
export declare const fastifySensibleVersion = "~5.2.0";
|
|
11
11
|
export declare const fastifyPluginVersion = "~4.5.0";
|
|
12
|
-
export declare const axiosVersion = "^1.
|
|
12
|
+
export declare const axiosVersion = "^1.6.0";
|
package/src/utils/versions.js
CHANGED