@nx/nuxt 23.0.0-rc.3 → 23.0.0

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.
@@ -92,9 +92,9 @@ async function addE2e(host, options) {
92
92
  async function getNuxtE2EWebServerInfo(tree, projectName, configFilePath) {
93
93
  const nxJson = (0, devkit_1.readNxJson)(tree);
94
94
  let e2ePort = 4200;
95
- const serveTargetOptions = (0, internal_1.readTargetDefaultsForTarget)('serve', nxJson.targetDefaults)?.options;
96
- if (serveTargetOptions?.port) {
97
- e2ePort = serveTargetOptions.port;
95
+ if (nxJson.targetDefaults?.['serve'] &&
96
+ nxJson.targetDefaults?.['serve'].options?.port) {
97
+ e2ePort = nxJson.targetDefaults?.['serve'].options?.port;
98
98
  }
99
99
  return (0, internal_1.getE2EWebServerInfo)(tree, projectName, {
100
100
  plugin: '@nx/nuxt/plugin',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/nuxt",
3
- "version": "23.0.0-rc.3",
3
+ "version": "23.0.0",
4
4
  "private": false,
5
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": {
@@ -60,15 +60,15 @@
60
60
  "dependencies": {
61
61
  "tslib": "^2.3.0",
62
62
  "semver": "^7.6.3",
63
- "@nx/js": "23.0.0-rc.3",
64
- "@nx/eslint": "23.0.0-rc.3",
65
- "@nx/devkit": "23.0.0-rc.3",
66
- "@nx/vite": "23.0.0-rc.3",
67
- "@nx/vue": "23.0.0-rc.3",
68
- "@nx/vitest": "23.0.0-rc.3"
63
+ "@nx/js": "23.0.0",
64
+ "@nx/vue": "23.0.0",
65
+ "@nx/vite": "23.0.0",
66
+ "@nx/vitest": "23.0.0",
67
+ "@nx/eslint": "23.0.0",
68
+ "@nx/devkit": "23.0.0"
69
69
  },
70
70
  "devDependencies": {
71
- "nx": "23.0.0-rc.3"
71
+ "nx": "23.0.0"
72
72
  },
73
73
  "peerDependencies": {
74
74
  "nuxt": ">=3.0.0 <5.0.0",