@nrwl/angular 17.2.0-beta.1 → 17.2.0-beta.10
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/executors.json +4 -4
- package/package.json +2 -2
package/executors.json
CHANGED
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"schema": "@nx/angular/src/builders/webpack-browser/schema.json",
|
|
38
38
|
"description": "The `webpack-browser` executor is very similar to the standard `browser` builder provided by the Angular Devkit. It allows you to build your Angular application to a build artifact that can be hosted online. There are some key differences: \n- Supports Custom Webpack Configurations \n- Supports Incremental Building"
|
|
39
39
|
},
|
|
40
|
-
"
|
|
41
|
-
"implementation": "@nx/angular/src/builders/
|
|
42
|
-
"schema": "@nx/angular/src/builders/
|
|
43
|
-
"description": "The `
|
|
40
|
+
"dev-server": {
|
|
41
|
+
"implementation": "@nx/angular/src/builders/dev-server/dev-server.impl",
|
|
42
|
+
"schema": "@nx/angular/src/builders/dev-server/schema.json",
|
|
43
|
+
"description": "The `dev-server` executor is very similar to the standard `dev-server` builder provided by the Angular Devkit. It is usually used in tandem with `@nrwl/angular:webpack-browser` when your Angular application uses a custom webpack configuration."
|
|
44
44
|
},
|
|
45
45
|
"webpack-server": {
|
|
46
46
|
"implementation": "@nx/angular/src/builders/webpack-server/webpack-server.impl",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/angular",
|
|
3
|
-
"version": "17.2.0-beta.
|
|
3
|
+
"version": "17.2.0-beta.10",
|
|
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": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"builders": "./executors.json",
|
|
55
55
|
"schematics": "./generators.json",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@nx/angular": "17.2.0-beta.
|
|
57
|
+
"@nx/angular": "17.2.0-beta.10",
|
|
58
58
|
"tslib": "^2.3.0"
|
|
59
59
|
},
|
|
60
60
|
"publishConfig": {
|