@nx/vue 20.0.0-beta.0 → 20.0.0-beta.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": "20.0.0-beta.
|
|
3
|
+
"version": "20.0.0-beta.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": {
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"minimatch": "9.0.3",
|
|
33
33
|
"tslib": "^2.3.0",
|
|
34
|
-
"@nx/devkit": "20.0.0-beta.
|
|
35
|
-
"@nx/js": "20.0.0-beta.
|
|
36
|
-
"@nx/eslint": "20.0.0-beta.
|
|
37
|
-
"@nx/vite": "20.0.0-beta.
|
|
38
|
-
"@nx/web": "20.0.0-beta.
|
|
34
|
+
"@nx/devkit": "20.0.0-beta.2",
|
|
35
|
+
"@nx/js": "20.0.0-beta.2",
|
|
36
|
+
"@nx/eslint": "20.0.0-beta.2",
|
|
37
|
+
"@nx/vite": "20.0.0-beta.2",
|
|
38
|
+
"@nx/web": "20.0.0-beta.2"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
@@ -17,16 +17,6 @@
|
|
|
17
17
|
"x-prompt": "For which project do you want to generate stories?",
|
|
18
18
|
"x-priority": "important"
|
|
19
19
|
},
|
|
20
|
-
"generateCypressSpecs": {
|
|
21
|
-
"type": "boolean",
|
|
22
|
-
"description": "Automatically generate `*.spec.ts` files in the cypress e2e app generated by the cypress-configure generator.",
|
|
23
|
-
"x-deprecated": "Use interactionTests instead. This option will be removed in v20."
|
|
24
|
-
},
|
|
25
|
-
"cypressProject": {
|
|
26
|
-
"type": "string",
|
|
27
|
-
"description": "The Cypress project to generate the stories under. This is inferred from `project` by default.",
|
|
28
|
-
"x-deprecated": "Use interactionTests instead. This option will be removed in v20."
|
|
29
|
-
},
|
|
30
20
|
"interactionTests": {
|
|
31
21
|
"type": "boolean",
|
|
32
22
|
"description": "Set up Storybook interaction tests.",
|
|
@@ -5,8 +5,6 @@ export interface StorybookStoriesSchema {
|
|
|
5
5
|
js?: boolean;
|
|
6
6
|
ignorePaths?: string[];
|
|
7
7
|
skipFormat?: boolean;
|
|
8
|
-
cypressProject?: string;
|
|
9
|
-
generateCypressSpecs?: boolean;
|
|
10
8
|
}
|
|
11
9
|
export declare function createAllStories(tree: Tree, projectName: string, interactionTests: boolean, js: boolean, projectConfiguration: ProjectConfiguration, ignorePaths?: string[]): Promise<void>;
|
|
12
10
|
export declare function storiesGenerator(host: Tree, schema: StorybookStoriesSchema): Promise<GeneratorCallback>;
|