@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
@@ -34,6 +34,15 @@
34
34
  "alwaysAddToPackageJson": false
35
35
  }
36
36
  }
37
+ },
38
+ "17.3.1": {
39
+ "version": "17.3.1-beta.0",
40
+ "packages": {
41
+ "axios": {
42
+ "version": "^1.6.0",
43
+ "alwaysAddToPackageJson": false
44
+ }
45
+ }
37
46
  }
38
47
  }
39
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/node",
3
- "version": "17.3.1",
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.1",
35
- "@nx/jest": "17.3.1",
36
- "@nx/js": "17.3.1",
37
- "@nx/eslint": "17.3.1",
38
- "@nrwl/node": "17.3.1"
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, { uiFramework: 'react' }));
298
+ tasks.push(ensureDependencies(tree, {
299
+ uiFramework: options.isNest ? 'none' : 'react',
300
+ }));
299
301
  }
300
302
  }
301
303
  addAppFiles(tree, options);
@@ -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.0.0";
12
+ export declare const axiosVersion = "^1.6.0";
@@ -12,4 +12,4 @@ exports.fastifyVersion = '~4.13.0';
12
12
  exports.fastifyAutoloadVersion = '~5.7.1';
13
13
  exports.fastifySensibleVersion = '~5.2.0';
14
14
  exports.fastifyPluginVersion = '~4.5.0';
15
- exports.axiosVersion = '^1.0.0';
15
+ exports.axiosVersion = '^1.6.0';