@nx/angular 20.1.0 → 20.2.0-canary.20241113-cda7f26

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": "20.1.0",
3
+ "version": "20.2.0-canary.20241113-cda7f26",
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.2.0-canary.20241113-cda7f26",
84
+ "@nx/js": "20.2.0-canary.20241113-cda7f26",
85
+ "@nx/eslint": "20.2.0-canary.20241113-cda7f26",
86
+ "@nx/webpack": "20.2.0-canary.20241113-cda7f26",
87
+ "@nx/web": "20.2.0-canary.20241113-cda7f26",
88
+ "@nx/workspace": "20.2.0-canary.20241113-cda7f26",
89
89
  "piscina": "^4.4.0"
90
90
  },
91
91
  "peerDependencies": {
@@ -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;