@nx/angular 20.1.0 → 20.1.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/angular",
3
- "version": "20.1.0",
3
+ "version": "20.1.2",
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, 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": {
@@ -80,12 +80,12 @@
80
80
  "webpack-merge": "^5.8.0",
81
81
  "webpack": "^5.88.0",
82
82
  "@module-federation/enhanced": "0.6.9",
83
- "@nx/devkit": "20.1.0",
84
- "@nx/js": "20.1.0",
85
- "@nx/eslint": "20.1.0",
86
- "@nx/webpack": "20.1.0",
87
- "@nx/web": "20.1.0",
88
- "@nx/workspace": "20.1.0",
83
+ "@nx/devkit": "20.1.2",
84
+ "@nx/js": "20.1.2",
85
+ "@nx/eslint": "20.1.2",
86
+ "@nx/webpack": "20.1.2",
87
+ "@nx/web": "20.1.2",
88
+ "@nx/workspace": "20.1.2",
89
89
  "piscina": "^4.4.0"
90
90
  },
91
91
  "peerDependencies": {
@@ -154,7 +154,6 @@
154
154
  },
155
155
  "optimization": {
156
156
  "description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For more information, see https://angular.dev/reference/configs/workspace-config#optimization-configuration.",
157
- "x-user-analytics": 16,
158
157
  "default": true,
159
158
  "oneOf": [
160
159
  {
@@ -238,7 +237,6 @@
238
237
  "aot": {
239
238
  "type": "boolean",
240
239
  "description": "Build using Ahead of Time compilation.",
241
- "x-user-analytics": 13,
242
240
  "default": true
243
241
  },
244
242
  "sourceMap": {
@@ -47,7 +47,6 @@
47
47
  "optimization": {
48
48
  "description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking and dead-code elimination. For more information, see https://angular.dev/reference/configs/workspace-config#optimization-configuration.",
49
49
  "default": true,
50
- "x-user-analytics": "ep.ng_optimization",
51
50
  "oneOf": [
52
51
  {
53
52
  "type": "object",
@@ -147,7 +147,6 @@
147
147
  "optimization": {
148
148
  "description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For more information, see https://angular.dev/reference/configs/workspace-config#optimization-configuration.",
149
149
  "default": true,
150
- "x-user-analytics": "ep.ng_optimization",
151
150
  "oneOf": [
152
151
  {
153
152
  "type": "object",
@@ -277,7 +276,6 @@
277
276
  "aot": {
278
277
  "type": "boolean",
279
278
  "description": "Build using Ahead of Time compilation.",
280
- "x-user-analytics": "ep.ng_aot",
281
279
  "default": true
282
280
  },
283
281
  "sourceMap": {
@@ -143,7 +143,6 @@
143
143
  "optimization": {
144
144
  "description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For more information, see https://angular.dev/reference/configs/workspace-config#optimization-configuration.",
145
145
  "default": true,
146
- "x-user-analytics": "ep.ng_optimization",
147
146
  "oneOf": [
148
147
  {
149
148
  "type": "object",
@@ -225,7 +224,6 @@
225
224
  "aot": {
226
225
  "type": "boolean",
227
226
  "description": "Build using Ahead of Time compilation.",
228
- "x-user-analytics": "ep.ng_aot",
229
227
  "default": true
230
228
  },
231
229
  "sourceMap": {
@@ -52,6 +52,7 @@ async function normalizeOptions(host, schema) {
52
52
  fileName,
53
53
  importPath,
54
54
  ngCliSchematicLibRoot,
55
+ skipTests: options.unitTestRunner === 'none' ? true : options.skipTests,
55
56
  standaloneComponentName: `${(0, devkit_1.names)(projectNames.projectSimpleName).className}Component`,
56
57
  };
57
58
  const { displayBlock, inlineStyle, inlineTemplate, viewEncapsulation, changeDetection, style, skipTests, selector, skipSelector, flat, ...libraryOptions } = allNormalizedOptions;