@nx/angular 19.0.0-canary.20240423-b37bfdb → 19.0.0-canary.20240425-cec57c4
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/angular",
|
3
|
-
"version": "19.0.0-canary.
|
3
|
+
"version": "19.0.0-canary.20240425-cec57c4",
|
4
4
|
"private": false,
|
5
|
-
"description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, and Cypress. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
|
5
|
+
"description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypress. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
8
8
|
"url": "https://github.com/nrwl/nx.git",
|
@@ -78,14 +78,14 @@
|
|
78
78
|
"tslib": "^2.3.0",
|
79
79
|
"webpack": "^5.80.0",
|
80
80
|
"webpack-merge": "^5.8.0",
|
81
|
-
"@nx/devkit": "19.0.0-canary.
|
82
|
-
"@nx/js": "19.0.0-canary.
|
83
|
-
"@nx/eslint": "19.0.0-canary.
|
84
|
-
"@nx/webpack": "19.0.0-canary.
|
85
|
-
"@nx/web": "19.0.0-canary.
|
86
|
-
"@nx/workspace": "19.0.0-canary.
|
81
|
+
"@nx/devkit": "19.0.0-canary.20240425-cec57c4",
|
82
|
+
"@nx/js": "19.0.0-canary.20240425-cec57c4",
|
83
|
+
"@nx/eslint": "19.0.0-canary.20240425-cec57c4",
|
84
|
+
"@nx/webpack": "19.0.0-canary.20240425-cec57c4",
|
85
|
+
"@nx/web": "19.0.0-canary.20240425-cec57c4",
|
86
|
+
"@nx/workspace": "19.0.0-canary.20240425-cec57c4",
|
87
87
|
"piscina": "^4.4.0",
|
88
|
-
"@nrwl/angular": "19.0.0-canary.
|
88
|
+
"@nrwl/angular": "19.0.0-canary.20240425-cec57c4"
|
89
89
|
},
|
90
90
|
"peerDependencies": {
|
91
91
|
"@angular-devkit/build-angular": ">= 15.0.0 < 18.0.0",
|
@@ -47,7 +47,7 @@ async function normalizeOptions(host, options) {
|
|
47
47
|
skipTests: options.unitTestRunner === test_runners_1.UnitTestRunner.None,
|
48
48
|
skipFormat: false,
|
49
49
|
unitTestRunner: test_runners_1.UnitTestRunner.Jest,
|
50
|
-
e2eTestRunner: test_runners_1.E2eTestRunner.
|
50
|
+
e2eTestRunner: test_runners_1.E2eTestRunner.Playwright,
|
51
51
|
linter: eslint_1.Linter.EsLint,
|
52
52
|
strict: true,
|
53
53
|
standalone: true,
|
@@ -110,10 +110,10 @@
|
|
110
110
|
},
|
111
111
|
"e2eTestRunner": {
|
112
112
|
"type": "string",
|
113
|
-
"enum": ["
|
113
|
+
"enum": ["playwright", "cypress", "none"],
|
114
114
|
"description": "Test runner to use for end to end (E2E) tests.",
|
115
115
|
"x-prompt": "Which E2E test runner would you like to use?",
|
116
|
-
"default": "
|
116
|
+
"default": "playwright"
|
117
117
|
},
|
118
118
|
"tags": {
|
119
119
|
"type": "string",
|
@@ -117,10 +117,10 @@
|
|
117
117
|
},
|
118
118
|
"e2eTestRunner": {
|
119
119
|
"type": "string",
|
120
|
-
"enum": ["
|
120
|
+
"enum": ["playwright", "cypress", "none"],
|
121
121
|
"description": "Test runner to use for end to end (E2E) tests.",
|
122
122
|
"x-prompt": "Which E2E test runner would you like to use?",
|
123
|
-
"default": "
|
123
|
+
"default": "playwright"
|
124
124
|
},
|
125
125
|
"tags": {
|
126
126
|
"type": "string",
|
@@ -111,10 +111,10 @@
|
|
111
111
|
},
|
112
112
|
"e2eTestRunner": {
|
113
113
|
"type": "string",
|
114
|
-
"enum": ["
|
114
|
+
"enum": ["playwright", "cypress", "none"],
|
115
115
|
"description": "Test runner to use for end to end (E2E) tests.",
|
116
116
|
"x-prompt": "Which E2E test runner would you like to use?",
|
117
|
-
"default": "
|
117
|
+
"default": "playwright"
|
118
118
|
},
|
119
119
|
"tags": {
|
120
120
|
"type": "string",
|