@nx/angular 17.1.0-rc.0 → 17.1.1

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": "17.1.0-rc.0",
3
+ "version": "17.1.1",
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- Upgrading AngularJS applications \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -78,15 +78,15 @@
78
78
  "tslib": "^2.3.0",
79
79
  "webpack": "^5.80.0",
80
80
  "webpack-merge": "^5.8.0",
81
- "@nx/devkit": "17.1.0-rc.0",
82
- "@nx/cypress": "17.1.0-rc.0",
83
- "@nx/jest": "17.1.0-rc.0",
84
- "@nx/js": "17.1.0-rc.0",
85
- "@nx/eslint": "17.1.0-rc.0",
86
- "@nx/webpack": "17.1.0-rc.0",
87
- "@nx/web": "17.1.0-rc.0",
88
- "@nx/workspace": "17.1.0-rc.0",
89
- "@nrwl/angular": "17.1.0-rc.0"
81
+ "@nx/devkit": "17.1.1",
82
+ "@nx/cypress": "17.1.1",
83
+ "@nx/jest": "17.1.1",
84
+ "@nx/js": "17.1.1",
85
+ "@nx/eslint": "17.1.1",
86
+ "@nx/webpack": "17.1.1",
87
+ "@nx/web": "17.1.1",
88
+ "@nx/workspace": "17.1.1",
89
+ "@nrwl/angular": "17.1.1"
90
90
  },
91
91
  "peerDependencies": {
92
92
  "@angular-devkit/build-angular": ">= 15.0.0 < 18.0.0",
@@ -744,7 +744,7 @@ import { Component, ViewEncapsulation } from '@angular/core';
744
744
  <pre><span># Generate UI lib</span>
745
745
  nx g &#64;nx/angular:lib ui
746
746
  <span># Add a component</span>
747
- nx g &#64;nx/angular:component button --project ui</pre>
747
+ nx g &#64;nx/angular:component ui/src/lib/button</pre>
748
748
  </details>
749
749
  <details>
750
750
  <summary>
@@ -747,7 +747,7 @@ import { CommonModule } from '@angular/common';
747
747
  <pre><span># Generate UI lib</span>
748
748
  nx g &#64;nx/angular:lib ui
749
749
  <span># Add a component</span>
750
- nx g &#64;nx/angular:component button --project ui</pre>
750
+ nx g &#64;nx/angular:component ui/src/lib/button</pre>
751
751
  </details>
752
752
  <details>
753
753
  <summary>