@nx/cypress 18.0.5 → 18.0.6

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/cypress",
3
- "version": "18.0.5",
3
+ "version": "18.0.6",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Cypress contains executors and generators allowing your workspace to use the powerful Cypress integration testing capabilities.",
6
6
  "repository": {
@@ -34,14 +34,14 @@
34
34
  "migrations": "./migrations.json"
35
35
  },
36
36
  "dependencies": {
37
- "@nx/devkit": "18.0.5",
38
- "@nx/eslint": "18.0.5",
39
- "@nx/js": "18.0.5",
37
+ "@nx/devkit": "18.0.6",
38
+ "@nx/eslint": "18.0.6",
39
+ "@nx/js": "18.0.6",
40
40
  "@phenomnomnominal/tsquery": "~5.0.1",
41
41
  "detect-port": "^1.5.1",
42
42
  "semver": "^7.5.3",
43
43
  "tslib": "^2.3.0",
44
- "@nrwl/cypress": "18.0.5"
44
+ "@nrwl/cypress": "18.0.6"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "cypress": ">= 3 < 14"
@@ -17,15 +17,18 @@ function configurationGenerator(tree, options) {
17
17
  exports.configurationGenerator = configurationGenerator;
18
18
  async function configurationGeneratorInternal(tree, options) {
19
19
  const opts = normalizeOptions(tree, options);
20
+ opts.addPlugin ??= process.env.NX_ADD_PLUGINS !== 'false';
20
21
  const tasks = [];
21
22
  if (!(0, cypress_version_1.installedCypressVersion)()) {
22
23
  tasks.push(await (0, js_1.initGenerator)(tree, { ...options, skipFormat: true }));
23
24
  tasks.push(await (0, init_1.default)(tree, {
24
25
  ...opts,
25
26
  skipFormat: true,
26
- addPlugin: options.addPlugin,
27
27
  }));
28
28
  }
29
+ else if (opts.addPlugin) {
30
+ (0, init_1.addPlugin)(tree);
31
+ }
29
32
  const projectGraph = await (0, devkit_1.createProjectGraphAsync)();
30
33
  const nxJson = (0, devkit_1.readNxJson)(tree);
31
34
  const hasPlugin = nxJson.plugins?.some((p) => typeof p === 'string'
@@ -78,7 +81,6 @@ In this case you need to provide a devServerTarget,'<projectName>:<targetName>[:
78
81
  }
79
82
  return {
80
83
  ...options,
81
- addPlugin: options.addPlugin ?? process.env.NX_ADD_PLUGINS !== 'false',
82
84
  bundler: options.bundler ?? 'webpack',
83
85
  rootProject: options.rootProject ?? projectConfig.root === '.',
84
86
  linter: options.linter ?? eslint_1.Linter.EsLint,
@@ -201,6 +201,7 @@ async function normalizeOptions(host, options) {
201
201
  });
202
202
  options.linter = options.linter || eslint_1.Linter.EsLint;
203
203
  options.bundler = options.bundler || 'webpack';
204
+ options.addPlugin ??= process.env.NX_ADD_PLUGINS !== 'false';
204
205
  return {
205
206
  ...options,
206
207
  // other generators depend on the rootProject flag down stream
@@ -1,5 +1,6 @@
1
1
  import { GeneratorCallback, Tree } from '@nx/devkit';
2
2
  import { Schema } from './schema';
3
+ export declare function addPlugin(tree: Tree): void;
3
4
  export declare function cypressInitGenerator(tree: Tree, options: Schema): Promise<GeneratorCallback>;
4
5
  export declare function cypressInitGeneratorInternal(tree: Tree, options: Schema): Promise<GeneratorCallback>;
5
6
  export default cypressInitGenerator;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.cypressInitGeneratorInternal = exports.cypressInitGenerator = void 0;
3
+ exports.cypressInitGeneratorInternal = exports.cypressInitGenerator = exports.addPlugin = void 0;
4
4
  const devkit_1 = require("@nx/devkit");
5
5
  const update_package_scripts_1 = require("@nx/devkit/src/utils/update-package-scripts");
6
6
  const plugin_1 = require("../../plugins/plugin");
@@ -49,6 +49,7 @@ function addPlugin(tree) {
49
49
  });
50
50
  (0, devkit_1.updateNxJson)(tree, nxJson);
51
51
  }
52
+ exports.addPlugin = addPlugin;
52
53
  function updateProductionFileset(tree) {
53
54
  const nxJson = (0, devkit_1.readNxJson)(tree);
54
55
  const productionFileset = nxJson.namedInputs?.production;