@nx/nuxt 19.0.0-beta.2 → 19.0.0-beta.3

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,8 +1,8 @@
1
1
  {
2
2
  "name": "@nx/nuxt",
3
- "version": "19.0.0-beta.2",
3
+ "version": "19.0.0-beta.3",
4
4
  "private": false,
5
- "description": "The Nuxt plugin for Nx contains executors and generators for managing Nuxt applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Cypress, and Storybook.\n\n- Generators for applications, libraries, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
5
+ "description": "The Nuxt plugin for Nx contains executors and generators for managing Nuxt applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/nrwl/nx.git",
@@ -30,11 +30,11 @@
30
30
  "dependencies": {
31
31
  "tslib": "^2.3.0",
32
32
  "@nuxt/kit": "^3.10.0",
33
- "@nx/devkit": "19.0.0-beta.2",
34
- "@nx/js": "19.0.0-beta.2",
35
- "@nx/eslint": "19.0.0-beta.2",
36
- "@nx/vue": "19.0.0-beta.2",
37
- "@nx/vite": "19.0.0-beta.2"
33
+ "@nx/devkit": "19.0.0-beta.3",
34
+ "@nx/js": "19.0.0-beta.3",
35
+ "@nx/eslint": "19.0.0-beta.3",
36
+ "@nx/vue": "19.0.0-beta.3",
37
+ "@nx/vite": "19.0.0-beta.3"
38
38
  },
39
39
  "peerDependencies": {},
40
40
  "publishConfig": {
@@ -59,7 +59,7 @@ async function normalizeOptions(host, options, callingGenerator = '@nx/nuxt:appl
59
59
  style: options.style ?? 'none',
60
60
  };
61
61
  normalized.unitTestRunner ??= 'vitest';
62
- normalized.e2eTestRunner = normalized.e2eTestRunner ?? 'cypress';
62
+ normalized.e2eTestRunner = normalized.e2eTestRunner ?? 'playwright';
63
63
  return normalized;
64
64
  }
65
65
  exports.normalizeOptions = normalizeOptions;
@@ -49,10 +49,10 @@
49
49
  },
50
50
  "e2eTestRunner": {
51
51
  "type": "string",
52
- "enum": ["cypress", "playwright", "none"],
52
+ "enum": ["playwright", "cypress", "none"],
53
53
  "description": "Test runner to use for end to end (E2E) tests.",
54
54
  "x-prompt": "Which E2E test runner would you like to use?",
55
- "default": "cypress"
55
+ "default": "playwright"
56
56
  },
57
57
  "tags": {
58
58
  "type": "string",