@nx/plugin 22.7.0-beta.0 → 22.7.0-canary.20260320-2c4fb2a

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": "22.7.0-beta.0",
3
+ "version": "22.7.0-canary.20260320-2c4fb2a",
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,13 +28,13 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "tslib": "^2.3.0",
31
- "@nx/devkit": "22.7.0-beta.0",
32
- "@nx/jest": "22.7.0-beta.0",
33
- "@nx/js": "22.7.0-beta.0",
34
- "@nx/eslint": "22.7.0-beta.0"
31
+ "@nx/devkit": "22.7.0-canary.20260320-2c4fb2a",
32
+ "@nx/jest": "22.7.0-canary.20260320-2c4fb2a",
33
+ "@nx/js": "22.7.0-canary.20260320-2c4fb2a",
34
+ "@nx/eslint": "22.7.0-canary.20260320-2c4fb2a"
35
35
  },
36
36
  "devDependencies": {
37
- "nx": "22.7.0-beta.0"
37
+ "nx": "22.7.0-canary.20260320-2c4fb2a"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
@@ -19,7 +19,7 @@ function runCommandAsync(command, opts = {
19
19
  (0, child_process_1.exec)(command, {
20
20
  cwd: opts.cwd ?? (0, paths_1.tmpProjPath)(),
21
21
  env: { ...process.env, ...opts.env },
22
- windowsHide: false,
22
+ windowsHide: true,
23
23
  }, (err, stdout, stderr) => {
24
24
  if (!opts.silenceError && err) {
25
25
  reject(err);
@@ -1 +1 @@
1
- {"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../../../../../../packages/plugin/src/utils/testing-utils/commands.ts"],"names":[],"mappings":"AAKA;;;;;;GAMG;AACH,wBAAgB,YAAY,CAC1B,OAAO,CAAC,EAAE,MAAM,EAChB,IAAI,GAAE;IAAE,YAAY,CAAC,EAAE,OAAO,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAA;CAEpE,GACA,MAAM,CAiCR;AAED,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,EACf,IAAI,EAAE;IAAE,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAA;CAAE,GAC9C,MAAM,CAUR"}
1
+ {"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../../../../../../packages/plugin/src/utils/testing-utils/commands.ts"],"names":[],"mappings":"AAKA;;;;;;GAMG;AACH,wBAAgB,YAAY,CAC1B,OAAO,CAAC,EAAE,MAAM,EAChB,IAAI,GAAE;IAAE,YAAY,CAAC,EAAE,OAAO,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAA;CAEpE,GACA,MAAM,CAiCR;AAED,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,EACf,IAAI,EAAE;IAAE,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAA;CAAE,GAC9C,MAAM,CAWR"}
@@ -21,7 +21,7 @@ function runNxCommand(command, opts = {
21
21
  const execSyncOptions = {
22
22
  cwd,
23
23
  env: { ...process.env, ...opts.env },
24
- windowsHide: false,
24
+ windowsHide: true,
25
25
  };
26
26
  if ((0, utils_1.fileExists)((0, paths_1.tmpProjPath)('package.json'))) {
27
27
  const pmc = (0, devkit_1.getPackageManagerCommand)((0, devkit_1.detectPackageManager)(cwd));
@@ -55,6 +55,7 @@ function runCommand(command, opts) {
55
55
  cwd: opts.cwd ?? (0, paths_1.tmpProjPath)(),
56
56
  stdio: ['pipe', 'pipe', 'pipe'],
57
57
  env: { ...process.env, ...opts?.env },
58
+ windowsHide: true,
58
59
  }).toString();
59
60
  }
60
61
  catch (e) {
@@ -17,7 +17,7 @@ function runNxNewCommand(args, silent) {
17
17
  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 || ''}`, {
18
18
  cwd: localTmpDir,
19
19
  ...(silent && false ? { stdio: ['ignore', 'ignore', 'ignore'] } : {}),
20
- windowsHide: false,
20
+ windowsHide: true,
21
21
  });
22
22
  }
23
23
  function patchPackageJsonForPlugin(npmPackageName, distPath) {
@@ -45,7 +45,7 @@ function runPackageManagerInstall(silent = true) {
45
45
  const install = (0, child_process_1.execSync)(pmc.install, {
46
46
  cwd,
47
47
  ...(silent ? { stdio: ['ignore', 'ignore', 'ignore'] } : {}),
48
- windowsHide: false,
48
+ windowsHide: true,
49
49
  });
50
50
  return install ? install.toString() : '';
51
51
  }