@nx/vue 17.0.0-rc.3 → 17.0.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/vue",
3
- "version": "17.0.0-rc.3",
3
+ "version": "17.0.1",
4
4
  "private": false,
5
5
  "description": "The Vue plugin for Nx contains executors and generators for managing Vue applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, 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": {
@@ -30,12 +30,11 @@
30
30
  "dependencies": {
31
31
  "minimatch": "3.0.5",
32
32
  "tslib": "^2.3.0",
33
- "@nx/devkit": "17.0.0-rc.3",
34
- "@nx/jest": "17.0.0-rc.3",
35
- "@nx/js": "17.0.0-rc.3",
36
- "@nx/eslint": "17.0.0-rc.3",
37
- "@nx/vite": "17.0.0-rc.3",
38
- "@nx/web": "17.0.0-rc.3",
33
+ "@nx/devkit": "17.0.1",
34
+ "@nx/js": "17.0.1",
35
+ "@nx/eslint": "17.0.1",
36
+ "@nx/vite": "17.0.1",
37
+ "@nx/web": "17.0.1",
39
38
  "@phenomnomnominal/tsquery": "~5.0.1"
40
39
  },
41
40
  "publishConfig": {
@@ -88,7 +88,7 @@
88
88
  "enum": ["jest", "vitest", "none"],
89
89
  "description": "Test runner to use for unit tests.",
90
90
  "x-prompt": "Which unit test runner would you like to use?",
91
- "default": "none"
91
+ "default": "vitest"
92
92
  },
93
93
  "inSourceTests": {
94
94
  "type": "boolean",
@@ -110,5 +110,5 @@
110
110
  "x-prompt": "What unit test runner should be used?"
111
111
  }
112
112
  },
113
- "required": ["name"]
113
+ "required": ["name", "project"]
114
114
  }
@@ -98,7 +98,7 @@
98
98
  "component": {
99
99
  "type": "boolean",
100
100
  "description": "Generate a default component.",
101
- "default": true
101
+ "default": false
102
102
  },
103
103
  "js": {
104
104
  "type": "boolean",
@@ -12,7 +12,7 @@ function createTsConfig(host, projectRoot, type, options, relativePathToRootTsCo
12
12
  strict: options.strict,
13
13
  jsx: 'preserve',
14
14
  jsxImportSource: 'vue',
15
- moduleResolution: 'bundler',
15
+ moduleResolution: 'node',
16
16
  resolveJsonModule: true,
17
17
  verbatimModuleSyntax: options.unitTestRunner !== 'jest',
18
18
  },