@nx/plugin 16.8.0 → 16.8.1

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/plugin",
3
- "version": "16.8.0",
3
+ "version": "16.8.1",
4
4
  "private": false,
5
5
  "description": "This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.",
6
6
  "repository": {
@@ -28,11 +28,11 @@
28
28
  "migrations": "./migrations.json"
29
29
  },
30
30
  "dependencies": {
31
- "@nrwl/nx-plugin": "16.8.0",
32
- "@nx/devkit": "16.8.0",
33
- "@nx/jest": "16.8.0",
34
- "@nx/js": "16.8.0",
35
- "@nx/linter": "16.8.0",
31
+ "@nrwl/nx-plugin": "16.8.1",
32
+ "@nx/devkit": "16.8.1",
33
+ "@nx/jest": "16.8.1",
34
+ "@nx/js": "16.8.1",
35
+ "@nx/linter": "16.8.1",
36
36
  "@phenomnomnominal/tsquery": "~5.0.1",
37
37
  "fs-extra": "^11.1.0",
38
38
  "tslib": "^2.3.0"
@@ -41,5 +41,5 @@
41
41
  "access": "public"
42
42
  },
43
43
  "type": "commonjs",
44
- "gitHead": "af53c7cfb21c0ebc7be2dab33b712f8d10bc81f7"
44
+ "gitHead": "29a7b8575e683d3a581b4bf6f82ee4486bfa94dd"
45
45
  }
@@ -53,7 +53,7 @@ function createTestProject() {
53
53
  });
54
54
 
55
55
  execSync(
56
- `<%= packageManagerCommands.exec %> --yes create-nx-workspace@latest ${projectName} --preset empty --no-nxCloud --no-interactive`,
56
+ `<%= packageManagerCommands.exec %> --yes create-nx-workspace@latest ${projectName} --preset apps --no-nxCloud --no-interactive`,
57
57
  {
58
58
  cwd: dirname(projectDirectory),
59
59
  stdio: 'inherit',
@@ -10,7 +10,7 @@ const paths_1 = require("./paths");
10
10
  const utils_1 = require("./utils");
11
11
  function runNxNewCommand(args, silent) {
12
12
  const localTmpDir = (0, path_1.dirname)((0, paths_1.tmpProjPath)());
13
- return (0, child_process_1.execSync)(`node ${require.resolve('nx')} new proj --nx-workspace-root=${localTmpDir} --no-interactive --skip-install --collection=@nx/workspace --npmScope=proj --preset=empty ${args || ''}`, {
13
+ return (0, child_process_1.execSync)(`node ${require.resolve('nx')} new proj --nx-workspace-root=${localTmpDir} --no-interactive --skip-install --collection=@nx/workspace --npmScope=proj --preset=apps ${args || ''}`, {
14
14
  cwd: localTmpDir,
15
15
  ...(silent && false ? { stdio: ['ignore', 'ignore', 'ignore'] } : {}),
16
16
  });