@nx/vue 19.0.1 → 19.0.2
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": "19.0.
|
|
3
|
+
"version": "19.0.2",
|
|
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 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": {
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"minimatch": "9.0.3",
|
|
32
32
|
"tslib": "^2.3.0",
|
|
33
|
-
"@nx/devkit": "19.0.
|
|
34
|
-
"@nx/js": "19.0.
|
|
35
|
-
"@nx/eslint": "19.0.
|
|
36
|
-
"@nx/vite": "19.0.
|
|
37
|
-
"@nx/web": "19.0.
|
|
33
|
+
"@nx/devkit": "19.0.2",
|
|
34
|
+
"@nx/js": "19.0.2",
|
|
35
|
+
"@nx/eslint": "19.0.2",
|
|
36
|
+
"@nx/vite": "19.0.2",
|
|
37
|
+
"@nx/web": "19.0.2"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
@@ -11,19 +11,19 @@ export interface ComponentGeneratorSchema {
|
|
|
11
11
|
nameAndDirectoryFormat?: 'as-provided' | 'derived';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
* @deprecated Provide the `directory` option instead and use the `as-provided` format. It will be removed in Nx
|
|
14
|
+
* @deprecated Provide the `directory` option instead and use the `as-provided` format. It will be removed in Nx v20.
|
|
15
15
|
*/
|
|
16
16
|
flat?: boolean;
|
|
17
17
|
/**
|
|
18
|
-
* @deprecated Provide the desired `directory` option instead and use the `as-provided` format. It will be removed in Nx
|
|
18
|
+
* @deprecated Provide the desired `directory` option instead and use the `as-provided` format. It will be removed in Nx v20.
|
|
19
19
|
*/
|
|
20
20
|
pascalCaseDirectory?: boolean;
|
|
21
21
|
/**
|
|
22
|
-
* @deprecated Provide the desired `name` option instead and use the `as-provided` format. It will be removed in Nx
|
|
22
|
+
* @deprecated Provide the desired `name` option instead and use the `as-provided` format. It will be removed in Nx v20.
|
|
23
23
|
*/
|
|
24
24
|
pascalCaseFiles?: boolean;
|
|
25
25
|
/**
|
|
26
|
-
* @deprecated Provide the `directory` option instead. The project will be determined from the directory provided. It will be removed in Nx
|
|
26
|
+
* @deprecated Provide the `directory` option instead. The project will be determined from the directory provided. It will be removed in Nx v20.
|
|
27
27
|
*/
|
|
28
28
|
project?: string;
|
|
29
29
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"$default": {
|
|
20
20
|
"$source": "projectName"
|
|
21
21
|
},
|
|
22
|
-
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx
|
|
22
|
+
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx v20."
|
|
23
23
|
},
|
|
24
24
|
"name": {
|
|
25
25
|
"type": "string",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"type": "boolean",
|
|
58
58
|
"description": "Create component at the source root rather than its own directory.",
|
|
59
59
|
"default": false,
|
|
60
|
-
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. It will be removed in Nx
|
|
60
|
+
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. It will be removed in Nx v20."
|
|
61
61
|
},
|
|
62
62
|
"export": {
|
|
63
63
|
"type": "boolean",
|
|
@@ -71,14 +71,14 @@
|
|
|
71
71
|
"description": "Use pascal case component file name (e.g. `App.tsx`).",
|
|
72
72
|
"alias": "P",
|
|
73
73
|
"default": false,
|
|
74
|
-
"x-deprecated": "Provide the desired `name` option instead and use the `as-provided` format. It will be removed in Nx
|
|
74
|
+
"x-deprecated": "Provide the desired `name` option instead and use the `as-provided` format. It will be removed in Nx v20."
|
|
75
75
|
},
|
|
76
76
|
"pascalCaseDirectory": {
|
|
77
77
|
"type": "boolean",
|
|
78
78
|
"description": "Use pascal case directory name (e.g. `App/App.tsx`).",
|
|
79
79
|
"alias": "R",
|
|
80
80
|
"default": false,
|
|
81
|
-
"x-deprecated": "Provide the desired `directory` option instead and use the `as-provided` format. It will be removed in Nx
|
|
81
|
+
"x-deprecated": "Provide the desired `directory` option instead and use the `as-provided` format. It will be removed in Nx v20."
|
|
82
82
|
},
|
|
83
83
|
"routing": {
|
|
84
84
|
"type": "boolean",
|