@nx/angular 17.0.3 → 17.1.0-beta.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": "17.0.
|
|
3
|
+
"version": "17.1.0-beta.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, 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": {
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
71
|
-
"@typescript-eslint/type-utils": "^
|
|
71
|
+
"@typescript-eslint/type-utils": "^6.9.1",
|
|
72
72
|
"chalk": "^4.1.0",
|
|
73
73
|
"find-cache-dir": "^3.3.2",
|
|
74
74
|
"ignore": "^5.0.4",
|
|
@@ -79,15 +79,15 @@
|
|
|
79
79
|
"webpack": "^5.80.0",
|
|
80
80
|
"webpack-merge": "^5.8.0",
|
|
81
81
|
"enquirer": "^2.3.6",
|
|
82
|
-
"@nx/devkit": "17.0.
|
|
83
|
-
"@nx/cypress": "17.0.
|
|
84
|
-
"@nx/jest": "17.0.
|
|
85
|
-
"@nx/js": "17.0.
|
|
86
|
-
"@nx/eslint": "17.0.
|
|
87
|
-
"@nx/webpack": "17.0.
|
|
88
|
-
"@nx/web": "17.0.
|
|
89
|
-
"@nx/workspace": "17.0.
|
|
90
|
-
"@nrwl/angular": "17.0.
|
|
82
|
+
"@nx/devkit": "17.1.0-beta.2",
|
|
83
|
+
"@nx/cypress": "17.1.0-beta.2",
|
|
84
|
+
"@nx/jest": "17.1.0-beta.2",
|
|
85
|
+
"@nx/js": "17.1.0-beta.2",
|
|
86
|
+
"@nx/eslint": "17.1.0-beta.2",
|
|
87
|
+
"@nx/webpack": "17.1.0-beta.2",
|
|
88
|
+
"@nx/web": "17.1.0-beta.2",
|
|
89
|
+
"@nx/workspace": "17.1.0-beta.2",
|
|
90
|
+
"@nrwl/angular": "17.1.0-beta.2"
|
|
91
91
|
},
|
|
92
92
|
"peerDependencies": {
|
|
93
93
|
"@angular-devkit/build-angular": ">= 14.0.0 < 17.0.0",
|
|
@@ -283,6 +283,15 @@ import { Component, ViewEncapsulation } from '@angular/core';
|
|
|
283
283
|
.nx-console svg {
|
|
284
284
|
color: rgba(0, 122, 204, 1);
|
|
285
285
|
}
|
|
286
|
+
.nx-console-jetbrains {
|
|
287
|
+
margin-top: 2rem;
|
|
288
|
+
}
|
|
289
|
+
.nx-console-jetbrains:hover {
|
|
290
|
+
background-color: rgba(255, 49, 140, 1);
|
|
291
|
+
}
|
|
292
|
+
.nx-console-jetbrains svg {
|
|
293
|
+
color: rgba(255, 49, 140, 1);
|
|
294
|
+
}
|
|
286
295
|
#nx-repo:hover {
|
|
287
296
|
background-color: rgba(24, 23, 23, 1);
|
|
288
297
|
}
|
|
@@ -639,24 +648,35 @@ import { Component, ViewEncapsulation } from '@angular/core';
|
|
|
639
648
|
</svg>
|
|
640
649
|
<span>
|
|
641
650
|
Install Nx Console for VSCode
|
|
642
|
-
<span>The official VSCode
|
|
651
|
+
<span>The official VSCode extension for Nx.</span>
|
|
643
652
|
</span>
|
|
644
653
|
</a>
|
|
645
654
|
<a
|
|
646
|
-
class="button-pill rounded shadow nx-console"
|
|
655
|
+
class="button-pill rounded shadow nx-console-jetbrains"
|
|
647
656
|
href="https://plugins.jetbrains.com/plugin/21060-nx-console"
|
|
648
657
|
target="_blank"
|
|
649
658
|
rel="noreferrer"
|
|
650
659
|
>
|
|
651
660
|
<svg
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
661
|
+
height="48"
|
|
662
|
+
width="48"
|
|
663
|
+
viewBox="20 20 60 60"
|
|
664
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
665
|
+
>
|
|
666
|
+
<path d="m22.5 22.5h60v60h-60z" />
|
|
667
|
+
<g fill="#fff">
|
|
668
|
+
<path d="m29.03 71.25h22.5v3.75h-22.5z" />
|
|
669
|
+
<path d="m28.09 38 1.67-1.58a1.88 1.88 0 0 0 1.47.87c.64 0 1.06-.44 1.06-1.31v-5.98h2.58v6a3.48 3.48 0 0 1 -.87 2.6 3.56 3.56 0 0 1 -2.57.95 3.84 3.84 0 0 1 -3.34-1.55z" />
|
|
670
|
+
<path d="m36 30h7.53v2.19h-5v1.44h4.49v2h-4.42v1.49h5v2.21h-7.6z" />
|
|
671
|
+
<path d="m47.23 32.29h-2.8v-2.29h8.21v2.27h-2.81v7.1h-2.6z" />
|
|
672
|
+
<path d="m29.13 43.08h4.42a3.53 3.53 0 0 1 2.55.83 2.09 2.09 0 0 1 .6 1.53 2.16 2.16 0 0 1 -1.44 2.09 2.27 2.27 0 0 1 1.86 2.29c0 1.61-1.31 2.59-3.55 2.59h-4.44zm5 2.89c0-.52-.42-.8-1.18-.8h-1.29v1.64h1.24c.79 0 1.25-.26 1.25-.81zm-.9 2.66h-1.57v1.73h1.62c.8 0 1.24-.31 1.24-.86 0-.5-.4-.87-1.27-.87z" />
|
|
673
|
+
<path d="m38 43.08h4.1a4.19 4.19 0 0 1 3 1 2.93 2.93 0 0 1 .9 2.19 3 3 0 0 1 -1.93 2.89l2.24 3.27h-3l-1.88-2.84h-.87v2.84h-2.56zm4 4.5c.87 0 1.39-.43 1.39-1.11 0-.75-.54-1.12-1.4-1.12h-1.44v2.26z" />
|
|
674
|
+
<path d="m49.59 43h2.5l4 9.44h-2.79l-.67-1.69h-3.63l-.67 1.69h-2.71zm2.27 5.73-1-2.65-1.06 2.65z" />
|
|
675
|
+
<path d="m56.46 43.05h2.6v9.37h-2.6z" />
|
|
676
|
+
<path d="m60.06 43.05h2.42l3.37 5v-5h2.57v9.37h-2.26l-3.53-5.14v5.14h-2.57z" />
|
|
677
|
+
<path d="m68.86 51 1.45-1.73a4.84 4.84 0 0 0 3 1.13c.71 0 1.08-.24 1.08-.65 0-.4-.31-.6-1.59-.91-2-.46-3.53-1-3.53-2.93 0-1.74 1.37-3 3.62-3a5.89 5.89 0 0 1 3.86 1.25l-1.26 1.84a4.63 4.63 0 0 0 -2.62-.92c-.63 0-.94.25-.94.6 0 .42.32.61 1.63.91 2.14.46 3.44 1.16 3.44 2.91 0 1.91-1.51 3-3.79 3a6.58 6.58 0 0 1 -4.35-1.5z" />
|
|
678
|
+
</g>
|
|
679
|
+
</svg>
|
|
660
680
|
<span>
|
|
661
681
|
Install Nx Console for JetBrains
|
|
662
682
|
<span>Available for WebStorm, Intellij IDEA Ultimate and more!</span>
|
|
@@ -286,6 +286,15 @@ import { CommonModule } from '@angular/common';
|
|
|
286
286
|
.nx-console svg {
|
|
287
287
|
color: rgba(0, 122, 204, 1);
|
|
288
288
|
}
|
|
289
|
+
.nx-console-jetbrains {
|
|
290
|
+
margin-top: 2rem;
|
|
291
|
+
}
|
|
292
|
+
.nx-console-jetbrains:hover {
|
|
293
|
+
background-color: rgba(255, 49, 140, 1);
|
|
294
|
+
}
|
|
295
|
+
.nx-console-jetbrains svg {
|
|
296
|
+
color: rgba(255, 49, 140, 1);
|
|
297
|
+
}
|
|
289
298
|
#nx-repo:hover {
|
|
290
299
|
background-color: rgba(24, 23, 23, 1);
|
|
291
300
|
}
|
|
@@ -642,24 +651,35 @@ import { CommonModule } from '@angular/common';
|
|
|
642
651
|
</svg>
|
|
643
652
|
<span>
|
|
644
653
|
Install Nx Console for VSCode
|
|
645
|
-
<span>The official VSCode
|
|
654
|
+
<span>The official VSCode extension for Nx.</span>
|
|
646
655
|
</span>
|
|
647
656
|
</a>
|
|
648
657
|
<a
|
|
649
|
-
class="button-pill rounded shadow nx-console"
|
|
658
|
+
class="button-pill rounded shadow nx-console-jetbrains"
|
|
650
659
|
href="https://plugins.jetbrains.com/plugin/21060-nx-console"
|
|
651
660
|
target="_blank"
|
|
652
661
|
rel="noreferrer"
|
|
653
662
|
>
|
|
654
663
|
<svg
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
664
|
+
height="48"
|
|
665
|
+
width="48"
|
|
666
|
+
viewBox="20 20 60 60"
|
|
667
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
668
|
+
>
|
|
669
|
+
<path d="m22.5 22.5h60v60h-60z" />
|
|
670
|
+
<g fill="#fff">
|
|
671
|
+
<path d="m29.03 71.25h22.5v3.75h-22.5z" />
|
|
672
|
+
<path d="m28.09 38 1.67-1.58a1.88 1.88 0 0 0 1.47.87c.64 0 1.06-.44 1.06-1.31v-5.98h2.58v6a3.48 3.48 0 0 1 -.87 2.6 3.56 3.56 0 0 1 -2.57.95 3.84 3.84 0 0 1 -3.34-1.55z" />
|
|
673
|
+
<path d="m36 30h7.53v2.19h-5v1.44h4.49v2h-4.42v1.49h5v2.21h-7.6z" />
|
|
674
|
+
<path d="m47.23 32.29h-2.8v-2.29h8.21v2.27h-2.81v7.1h-2.6z" />
|
|
675
|
+
<path d="m29.13 43.08h4.42a3.53 3.53 0 0 1 2.55.83 2.09 2.09 0 0 1 .6 1.53 2.16 2.16 0 0 1 -1.44 2.09 2.27 2.27 0 0 1 1.86 2.29c0 1.61-1.31 2.59-3.55 2.59h-4.44zm5 2.89c0-.52-.42-.8-1.18-.8h-1.29v1.64h1.24c.79 0 1.25-.26 1.25-.81zm-.9 2.66h-1.57v1.73h1.62c.8 0 1.24-.31 1.24-.86 0-.5-.4-.87-1.27-.87z" />
|
|
676
|
+
<path d="m38 43.08h4.1a4.19 4.19 0 0 1 3 1 2.93 2.93 0 0 1 .9 2.19 3 3 0 0 1 -1.93 2.89l2.24 3.27h-3l-1.88-2.84h-.87v2.84h-2.56zm4 4.5c.87 0 1.39-.43 1.39-1.11 0-.75-.54-1.12-1.4-1.12h-1.44v2.26z" />
|
|
677
|
+
<path d="m49.59 43h2.5l4 9.44h-2.79l-.67-1.69h-3.63l-.67 1.69h-2.71zm2.27 5.73-1-2.65-1.06 2.65z" />
|
|
678
|
+
<path d="m56.46 43.05h2.6v9.37h-2.6z" />
|
|
679
|
+
<path d="m60.06 43.05h2.42l3.37 5v-5h2.57v9.37h-2.26l-3.53-5.14v5.14h-2.57z" />
|
|
680
|
+
<path d="m68.86 51 1.45-1.73a4.84 4.84 0 0 0 3 1.13c.71 0 1.08-.24 1.08-.65 0-.4-.31-.6-1.59-.91-2-.46-3.53-1-3.53-2.93 0-1.74 1.37-3 3.62-3a5.89 5.89 0 0 1 3.86 1.25l-1.26 1.84a4.63 4.63 0 0 0 -2.62-.92c-.63 0-.94.25-.94.6 0 .42.32.61 1.63.91 2.14.46 3.44 1.16 3.44 2.91 0 1.91-1.51 3-3.79 3a6.58 6.58 0 0 1 -4.35-1.5z" />
|
|
681
|
+
</g>
|
|
682
|
+
</svg>
|
|
663
683
|
<span>
|
|
664
684
|
Install Nx Console for JetBrains
|
|
665
685
|
<span>Available for WebStorm, Intellij IDEA Ultimate and more!</span>
|