@nx/angular 18.3.0-canary.20240412-d1584f8 → 18.3.0-canary.20240416-2ee9650
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/angular",
|
3
|
-
"version": "18.3.0-canary.
|
3
|
+
"version": "18.3.0-canary.20240416-2ee9650",
|
4
4
|
"private": false,
|
5
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.",
|
6
6
|
"repository": {
|
@@ -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": "18.3.0-canary.
|
82
|
-
"@nx/js": "18.3.0-canary.
|
83
|
-
"@nx/eslint": "18.3.0-canary.
|
84
|
-
"@nx/webpack": "18.3.0-canary.
|
85
|
-
"@nx/web": "18.3.0-canary.
|
86
|
-
"@nx/workspace": "18.3.0-canary.
|
81
|
+
"@nx/devkit": "18.3.0-canary.20240416-2ee9650",
|
82
|
+
"@nx/js": "18.3.0-canary.20240416-2ee9650",
|
83
|
+
"@nx/eslint": "18.3.0-canary.20240416-2ee9650",
|
84
|
+
"@nx/webpack": "18.3.0-canary.20240416-2ee9650",
|
85
|
+
"@nx/web": "18.3.0-canary.20240416-2ee9650",
|
86
|
+
"@nx/workspace": "18.3.0-canary.20240416-2ee9650",
|
87
87
|
"piscina": "^4.4.0",
|
88
|
-
"@nrwl/angular": "18.3.0-canary.
|
88
|
+
"@nrwl/angular": "18.3.0-canary.20240416-2ee9650"
|
89
89
|
},
|
90
90
|
"peerDependencies": {
|
91
91
|
"@angular-devkit/build-angular": ">= 15.0.0 < 18.0.0",
|
@@ -26,7 +26,7 @@ const semver_1 = require("semver");
|
|
26
26
|
* @param options override options
|
27
27
|
*/
|
28
28
|
function nxComponentTestingPreset(pathToConfig, options) {
|
29
|
-
if (global.NX_GRAPH_CREATION
|
29
|
+
if (global.NX_GRAPH_CREATION) {
|
30
30
|
// this is only used by plugins, so we don't need the component testing
|
31
31
|
// options, cast to any to avoid type errors
|
32
32
|
return (0, cypress_preset_1.nxBaseCypressPreset)(pathToConfig, {
|
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.DEFAULT_BROWSERS = void 0;
|
4
|
+
require("nx/src/internal-testing-utils/mock-project-graph");
|
4
5
|
const devkit_1 = require("@nx/devkit");
|
5
6
|
const path_1 = require("path");
|
6
7
|
const validBrowserslistConfigFilenames = new Set([
|