@nx/angular 22.7.0-beta.8 → 22.7.0-beta.9
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 +62 -62
- package/generators.json +185 -185
- package/migrations.json +2412 -2412
- package/ng-package.json +19 -19
- package/package.json +9 -9
- package/project.json +2 -8
- package/src/builders/dev-server/schema.json +163 -163
- package/src/builders/webpack-browser/schema.json +567 -567
- package/src/builders/webpack-server/schema.json +303 -303
- package/src/executors/application/schema.json +732 -732
- package/src/executors/browser-esbuild/schema.json +548 -548
- package/src/executors/delegate-build/schema.json +31 -31
- package/src/executors/extract-i18n/schema.json +47 -47
- package/src/executors/module-federation-dev-server/schema.json +164 -164
- package/src/executors/module-federation-ssr-dev-server/schema.json +119 -119
- package/src/executors/ng-packagr-lite/schema.json +35 -35
- package/src/executors/package/schema.json +35 -35
- package/src/executors/unit-test/schema.json +305 -305
- package/src/generators/add-linting/schema.json +48 -48
- package/src/generators/application/schema.json +188 -188
- package/src/generators/component/schema.json +123 -123
- package/src/generators/component-story/schema.json +50 -50
- package/src/generators/component-test/schema.json +52 -52
- package/src/generators/convert-to-application-executor/schema.json +23 -23
- package/src/generators/convert-to-rspack/schema.json +27 -27
- package/src/generators/convert-to-with-mf/schema.json +30 -30
- package/src/generators/cypress-component-configuration/schema.json +43 -43
- package/src/generators/directive/schema.json +89 -89
- package/src/generators/federate-module/schema.json +80 -80
- package/src/generators/host/schema.json +189 -189
- package/src/generators/init/schema.json +31 -31
- package/src/generators/library/schema.json +189 -189
- package/src/generators/library-secondary-entry-point/schema.json +40 -40
- package/src/generators/move/schema.json +53 -53
- package/src/generators/ng-add/schema.json +62 -63
- package/src/generators/ngrx/schema.json +99 -99
- package/src/generators/ngrx-feature-store/schema.json +69 -69
- package/src/generators/ngrx-root-store/schema.json +68 -68
- package/src/generators/pipe/schema.json +75 -75
- package/src/generators/remote/schema.json +182 -182
- package/src/generators/scam/schema.json +120 -120
- package/src/generators/scam-directive/schema.json +82 -82
- package/src/generators/scam-pipe/schema.json +64 -64
- package/src/generators/scam-to-standalone/schema.json +29 -29
- package/src/generators/setup-mf/schema.json +90 -90
- package/src/generators/setup-ssr/schema.json +70 -70
- package/src/generators/setup-tailwind/schema.json +39 -39
- package/src/generators/stories/schema.json +53 -53
- package/src/generators/storybook-configuration/schema.json +80 -80
- package/src/generators/web-worker/schema.json +45 -45
package/executors.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
"executors": {
|
|
3
|
+
"delegate-build": {
|
|
4
|
+
"implementation": "./src/executors/delegate-build/delegate-build.impl",
|
|
5
|
+
"schema": "./src/executors/delegate-build/schema.json",
|
|
6
|
+
"description": "Delegates the build to a different target while supporting incremental builds."
|
|
7
|
+
},
|
|
8
|
+
"ng-packagr-lite": {
|
|
9
|
+
"implementation": "./src/executors/ng-packagr-lite/ng-packagr-lite.impl",
|
|
10
|
+
"schema": "./src/executors/ng-packagr-lite/schema.json",
|
|
11
|
+
"description": "Builds an Angular library with support for incremental builds.\n\nThis executor is meant to be used with buildable libraries in an incremental build scenario. It is similar to the `@nx/angular:package` executor but it only produces ESM2022 bundles."
|
|
12
|
+
},
|
|
13
|
+
"package": {
|
|
14
|
+
"implementation": "./src/executors/package/package.impl",
|
|
15
|
+
"schema": "./src/executors/package/schema.json",
|
|
16
|
+
"description": "Builds and packages an Angular library producing an output following the Angular Package Format (APF) to be distributed as an NPM package.\n\nThis executor is a drop-in replacement for the `@angular-devkit/build-angular:ng-packagr` and `@angular/build:ng-packagr` builders, with additional support for incremental builds."
|
|
17
|
+
},
|
|
18
|
+
"browser-esbuild": {
|
|
19
|
+
"implementation": "./src/executors/browser-esbuild/browser-esbuild.impl",
|
|
20
|
+
"schema": "./src/executors/browser-esbuild/schema.json",
|
|
21
|
+
"description": "Builds an Angular application using [esbuild](https://esbuild.github.io/)."
|
|
22
|
+
},
|
|
23
|
+
"module-federation-dev-server": {
|
|
24
|
+
"implementation": "./src/executors/module-federation-dev-server/module-federation-dev-server.impl",
|
|
25
|
+
"schema": "./src/executors/module-federation-dev-server/schema.json",
|
|
26
|
+
"description": "Serves host [Module Federation](https://module-federation.io/) applications ([webpack](https://webpack.js.org/)-based) allowing to specify which remote applications should be served with the host."
|
|
27
|
+
},
|
|
28
|
+
"module-federation-dev-ssr": {
|
|
29
|
+
"implementation": "./src/executors/module-federation-ssr-dev-server/module-federation-ssr-dev-server.impl",
|
|
30
|
+
"schema": "./src/executors/module-federation-ssr-dev-server/schema.json",
|
|
31
|
+
"description": "The module-federation-ssr-dev-server executor is reserved exclusively for use with host SSR Module Federation applications. It allows the user to specify which remote applications should be served with the host."
|
|
32
|
+
},
|
|
33
|
+
"application": {
|
|
34
|
+
"implementation": "./src/executors/application/application.impl",
|
|
35
|
+
"schema": "./src/executors/application/schema.json",
|
|
36
|
+
"description": "Builds an Angular application using [esbuild](https://esbuild.github.io/) with integrated SSR and prerendering capabilities."
|
|
37
|
+
},
|
|
38
|
+
"extract-i18n": {
|
|
39
|
+
"implementation": "./src/executors/extract-i18n/extract-i18n.impl",
|
|
40
|
+
"schema": "./src/executors/extract-i18n/schema.json",
|
|
41
|
+
"description": "Extracts i18n messages from source code."
|
|
42
|
+
},
|
|
43
|
+
"unit-test": {
|
|
44
|
+
"implementation": "./src/executors/unit-test/unit-test.impl",
|
|
45
|
+
"schema": "./src/executors/unit-test/schema.json",
|
|
46
|
+
"description": "Run application unit tests. _Note: this is only supported in Angular versions >= 21.0.0_."
|
|
47
|
+
}
|
|
7
48
|
},
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"implementation": "./src/executors/module-federation-dev-server/module-federation-dev-server.impl",
|
|
25
|
-
"schema": "./src/executors/module-federation-dev-server/schema.json",
|
|
26
|
-
"description": "Serves host [Module Federation](https://module-federation.io/) applications ([webpack](https://webpack.js.org/)-based) allowing to specify which remote applications should be served with the host."
|
|
27
|
-
},
|
|
28
|
-
"module-federation-dev-ssr": {
|
|
29
|
-
"implementation": "./src/executors/module-federation-ssr-dev-server/module-federation-ssr-dev-server.impl",
|
|
30
|
-
"schema": "./src/executors/module-federation-ssr-dev-server/schema.json",
|
|
31
|
-
"description": "The module-federation-ssr-dev-server executor is reserved exclusively for use with host SSR Module Federation applications. It allows the user to specify which remote applications should be served with the host."
|
|
32
|
-
},
|
|
33
|
-
"application": {
|
|
34
|
-
"implementation": "./src/executors/application/application.impl",
|
|
35
|
-
"schema": "./src/executors/application/schema.json",
|
|
36
|
-
"description": "Builds an Angular application using [esbuild](https://esbuild.github.io/) with integrated SSR and prerendering capabilities."
|
|
37
|
-
},
|
|
38
|
-
"extract-i18n": {
|
|
39
|
-
"implementation": "./src/executors/extract-i18n/extract-i18n.impl",
|
|
40
|
-
"schema": "./src/executors/extract-i18n/schema.json",
|
|
41
|
-
"description": "Extracts i18n messages from source code."
|
|
42
|
-
},
|
|
43
|
-
"unit-test": {
|
|
44
|
-
"implementation": "./src/executors/unit-test/unit-test.impl",
|
|
45
|
-
"schema": "./src/executors/unit-test/schema.json",
|
|
46
|
-
"description": "Run application unit tests. _Note: this is only supported in Angular versions >= 21.0.0_."
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"builders": {
|
|
50
|
-
"webpack-browser": {
|
|
51
|
-
"implementation": "./src/builders/webpack-browser/webpack-browser.impl",
|
|
52
|
-
"schema": "./src/builders/webpack-browser/schema.json",
|
|
53
|
-
"description": "Builds an Angular application using [webpack](https://webpack.js.org/)."
|
|
54
|
-
},
|
|
55
|
-
"dev-server": {
|
|
56
|
-
"implementation": "./src/builders/dev-server/dev-server.impl",
|
|
57
|
-
"schema": "./src/builders/dev-server/schema.json",
|
|
58
|
-
"description": "Serves an Angular application using [webpack](https://webpack.js.org/) when the build target is using a webpack-based executor, or [Vite](https://vite.dev/) when the build target uses an [esbuild](https://esbuild.github.io/)-based executor."
|
|
59
|
-
},
|
|
60
|
-
"webpack-server": {
|
|
61
|
-
"implementation": "./src/builders/webpack-server/webpack-server.impl",
|
|
62
|
-
"schema": "./src/builders/webpack-server/schema.json",
|
|
63
|
-
"description": "Builds a server Angular application using [webpack](https://webpack.js.org/). This executor is a drop-in replacement for the `@angular-devkit/build-angular:server` builder provided by the Angular CLI. It is usually used in tandem with the `@nx/angular:webpack-browser` executor when your Angular application uses a custom webpack configuration."
|
|
49
|
+
"builders": {
|
|
50
|
+
"webpack-browser": {
|
|
51
|
+
"implementation": "./src/builders/webpack-browser/webpack-browser.impl",
|
|
52
|
+
"schema": "./src/builders/webpack-browser/schema.json",
|
|
53
|
+
"description": "Builds an Angular application using [webpack](https://webpack.js.org/)."
|
|
54
|
+
},
|
|
55
|
+
"dev-server": {
|
|
56
|
+
"implementation": "./src/builders/dev-server/dev-server.impl",
|
|
57
|
+
"schema": "./src/builders/dev-server/schema.json",
|
|
58
|
+
"description": "Serves an Angular application using [webpack](https://webpack.js.org/) when the build target is using a webpack-based executor, or [Vite](https://vite.dev/) when the build target uses an [esbuild](https://esbuild.github.io/)-based executor."
|
|
59
|
+
},
|
|
60
|
+
"webpack-server": {
|
|
61
|
+
"implementation": "./src/builders/webpack-server/webpack-server.impl",
|
|
62
|
+
"schema": "./src/builders/webpack-server/schema.json",
|
|
63
|
+
"description": "Builds a server Angular application using [webpack](https://webpack.js.org/). This executor is a drop-in replacement for the `@angular-devkit/build-angular:server` builder provided by the Angular CLI. It is usually used in tandem with the `@nx/angular:webpack-browser` executor when your Angular application uses a custom webpack configuration."
|
|
64
|
+
}
|
|
64
65
|
}
|
|
65
|
-
}
|
|
66
66
|
}
|
package/generators.json
CHANGED
|
@@ -1,188 +1,188 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
2
|
+
"name": "Nx Angular",
|
|
3
|
+
"version": "0.1",
|
|
4
|
+
"extends": ["@schematics/angular", "@nx/workspace"],
|
|
5
|
+
"generators": {
|
|
6
|
+
"add-linting": {
|
|
7
|
+
"factory": "./src/generators/add-linting/add-linting",
|
|
8
|
+
"schema": "./src/generators/add-linting/schema.json",
|
|
9
|
+
"description": "Adds linting configuration to an Angular project.",
|
|
10
|
+
"hidden": true
|
|
11
|
+
},
|
|
12
|
+
"application": {
|
|
13
|
+
"factory": "./src/generators/application/application",
|
|
14
|
+
"schema": "./src/generators/application/schema.json",
|
|
15
|
+
"aliases": ["app"],
|
|
16
|
+
"x-type": "application",
|
|
17
|
+
"description": "Creates an Angular application."
|
|
18
|
+
},
|
|
19
|
+
"component": {
|
|
20
|
+
"factory": "./src/generators/component/component",
|
|
21
|
+
"schema": "./src/generators/component/schema.json",
|
|
22
|
+
"aliases": ["c"],
|
|
23
|
+
"description": "Generate an Angular Component."
|
|
24
|
+
},
|
|
25
|
+
"component-story": {
|
|
26
|
+
"factory": "./src/generators/component-story/component-story",
|
|
27
|
+
"schema": "./src/generators/component-story/schema.json",
|
|
28
|
+
"description": "Creates a stories.ts file for a component.",
|
|
29
|
+
"hidden": true
|
|
30
|
+
},
|
|
31
|
+
"component-test": {
|
|
32
|
+
"factory": "./src/generators/component-test/component-test",
|
|
33
|
+
"schema": "./src/generators/component-test/schema.json",
|
|
34
|
+
"description": "Creates a cypress component test file for a component."
|
|
35
|
+
},
|
|
36
|
+
"convert-to-application-executor": {
|
|
37
|
+
"factory": "./src/generators/convert-to-application-executor/convert-to-application-executor",
|
|
38
|
+
"schema": "./src/generators/convert-to-application-executor/schema.json",
|
|
39
|
+
"description": "Converts projects to use the `@nx/angular:application` executor or the `@angular-devkit/build-angular:application` builder."
|
|
40
|
+
},
|
|
41
|
+
"convert-to-rspack": {
|
|
42
|
+
"factory": "./src/generators/convert-to-rspack/convert-to-rspack",
|
|
43
|
+
"schema": "./src/generators/convert-to-rspack/schema.json",
|
|
44
|
+
"description": "Converts Angular Webpack projects to use Rspack."
|
|
45
|
+
},
|
|
46
|
+
"directive": {
|
|
47
|
+
"factory": "./src/generators/directive/directive",
|
|
48
|
+
"schema": "./src/generators/directive/schema.json",
|
|
49
|
+
"aliases": ["d"],
|
|
50
|
+
"description": "Generate an Angular directive."
|
|
51
|
+
},
|
|
52
|
+
"federate-module": {
|
|
53
|
+
"factory": "./src/generators/federate-module/federate-module",
|
|
54
|
+
"schema": "./src/generators/federate-module/schema.json",
|
|
55
|
+
"x-type": "application",
|
|
56
|
+
"description": "Create a federated module, which is exposed by a remote and can be subsequently loaded by a host."
|
|
57
|
+
},
|
|
58
|
+
"init": {
|
|
59
|
+
"factory": "./src/generators/init/init",
|
|
60
|
+
"schema": "./src/generators/init/schema.json",
|
|
61
|
+
"description": "Initializes the `@nrwl/angular` plugin.",
|
|
62
|
+
"hidden": true
|
|
63
|
+
},
|
|
64
|
+
"library": {
|
|
65
|
+
"factory": "./src/generators/library/library",
|
|
66
|
+
"schema": "./src/generators/library/schema.json",
|
|
67
|
+
"aliases": ["lib"],
|
|
68
|
+
"x-type": "library",
|
|
69
|
+
"description": "Creates an Angular library."
|
|
70
|
+
},
|
|
71
|
+
"library-secondary-entry-point": {
|
|
72
|
+
"factory": "./src/generators/library-secondary-entry-point/library-secondary-entry-point",
|
|
73
|
+
"schema": "./src/generators/library-secondary-entry-point/schema.json",
|
|
74
|
+
"aliases": ["secondary-entry-point", "entry-point"],
|
|
75
|
+
"description": "Creates a secondary entry point for an Angular publishable library."
|
|
76
|
+
},
|
|
77
|
+
"remote": {
|
|
78
|
+
"factory": "./src/generators/remote/remote",
|
|
79
|
+
"schema": "./src/generators/remote/schema.json",
|
|
80
|
+
"x-type": "application",
|
|
81
|
+
"description": "Generate a Remote Angular Module Federation Application.",
|
|
82
|
+
"aliases": ["producer"]
|
|
83
|
+
},
|
|
84
|
+
"move": {
|
|
85
|
+
"factory": "./src/generators/move/move#angularMoveGenerator",
|
|
86
|
+
"schema": "./src/generators/move/schema.json",
|
|
87
|
+
"aliases": ["mv"],
|
|
88
|
+
"description": "Moves an Angular application or library to another folder within the workspace and updates the project configuration.",
|
|
89
|
+
"x-deprecated": "Use the `@nx/workspace:move` generator instead. This generator will be removed in Nx v22."
|
|
90
|
+
},
|
|
91
|
+
"convert-to-with-mf": {
|
|
92
|
+
"factory": "./src/generators/convert-to-with-mf/convert-to-with-mf",
|
|
93
|
+
"schema": "./src/generators/convert-to-with-mf/schema.json",
|
|
94
|
+
"description": "Converts an old micro frontend configuration to use the new withModuleFederation helper. It will run successfully if the following conditions are met: \n - Is either a host or remote application \n - Shared npm package configurations have not been modified \n - Name used to identify the Micro Frontend application matches the project name \n\n{% callout type=\"warning\" title=\"Overrides\" %}This generator will overwrite your webpack config. If you have additional custom configuration in your config file, it will be lost!{% /callout %}"
|
|
95
|
+
},
|
|
96
|
+
"host": {
|
|
97
|
+
"factory": "./src/generators/host/host",
|
|
98
|
+
"schema": "./src/generators/host/schema.json",
|
|
99
|
+
"x-type": "application",
|
|
100
|
+
"description": "Generate a Host Angular Module Federation Application.",
|
|
101
|
+
"aliases": ["consumer"]
|
|
102
|
+
},
|
|
103
|
+
"ng-add": {
|
|
104
|
+
"factory": "./src/generators/ng-add/ng-add",
|
|
105
|
+
"schema": "./src/generators/ng-add/schema.json",
|
|
106
|
+
"description": "Migrates an Angular CLI workspace to Nx or adds the Angular plugin to an Nx workspace.",
|
|
107
|
+
"hidden": true
|
|
108
|
+
},
|
|
109
|
+
"ngrx": {
|
|
110
|
+
"factory": "./src/generators/ngrx/ngrx",
|
|
111
|
+
"schema": "./src/generators/ngrx/schema.json",
|
|
112
|
+
"description": "Adds NgRx support to an application or library.",
|
|
113
|
+
"x-deprecated": "Use the 'ngrx-root-store' and 'ngrx-feature-store' generators instead. It will be removed in Nx v22."
|
|
114
|
+
},
|
|
115
|
+
"ngrx-feature-store": {
|
|
116
|
+
"factory": "./src/generators/ngrx-feature-store/ngrx-feature-store",
|
|
117
|
+
"schema": "./src/generators/ngrx-feature-store/schema.json",
|
|
118
|
+
"description": "Adds an NgRx Feature Store to an application or library."
|
|
119
|
+
},
|
|
120
|
+
"ngrx-root-store": {
|
|
121
|
+
"factory": "./src/generators/ngrx-root-store/ngrx-root-store",
|
|
122
|
+
"schema": "./src/generators/ngrx-root-store/schema.json",
|
|
123
|
+
"description": "Adds an NgRx Root Store to an application."
|
|
124
|
+
},
|
|
125
|
+
"pipe": {
|
|
126
|
+
"factory": "./src/generators/pipe/pipe",
|
|
127
|
+
"schema": "./src/generators/pipe/schema.json",
|
|
128
|
+
"description": "Generate an Angular Pipe",
|
|
129
|
+
"aliases": ["p"]
|
|
130
|
+
},
|
|
131
|
+
"scam-to-standalone": {
|
|
132
|
+
"factory": "./src/generators/scam-to-standalone/scam-to-standalone",
|
|
133
|
+
"schema": "./src/generators/scam-to-standalone/schema.json",
|
|
134
|
+
"description": "Convert an existing Single Component Angular Module (SCAM) to a Standalone Component."
|
|
135
|
+
},
|
|
136
|
+
"scam": {
|
|
137
|
+
"factory": "./src/generators/scam/scam",
|
|
138
|
+
"schema": "./src/generators/scam/schema.json",
|
|
139
|
+
"description": "Generate a component with an accompanying Single Component Angular Module (SCAM)."
|
|
140
|
+
},
|
|
141
|
+
"scam-directive": {
|
|
142
|
+
"factory": "./src/generators/scam-directive/scam-directive",
|
|
143
|
+
"schema": "./src/generators/scam-directive/schema.json",
|
|
144
|
+
"description": "Generate a directive with an accompanying Single Component Angular Module (SCAM)."
|
|
145
|
+
},
|
|
146
|
+
"scam-pipe": {
|
|
147
|
+
"factory": "./src/generators/scam-pipe/scam-pipe",
|
|
148
|
+
"schema": "./src/generators/scam-pipe/schema.json",
|
|
149
|
+
"description": "Generate a pipe with an accompanying Single Component Angular Module (SCAM)."
|
|
150
|
+
},
|
|
151
|
+
"setup-mf": {
|
|
152
|
+
"factory": "./src/generators/setup-mf/setup-mf",
|
|
153
|
+
"schema": "./src/generators/setup-mf/schema.json",
|
|
154
|
+
"description": "Generate a Module Federation configuration for a given Angular application."
|
|
155
|
+
},
|
|
156
|
+
"setup-ssr": {
|
|
157
|
+
"factory": "./src/generators/setup-ssr/setup-ssr",
|
|
158
|
+
"schema": "./src/generators/setup-ssr/schema.json",
|
|
159
|
+
"description": "Generate Angular Universal (SSR) setup for an Angular application."
|
|
160
|
+
},
|
|
161
|
+
"setup-tailwind": {
|
|
162
|
+
"factory": "./src/generators/setup-tailwind/setup-tailwind",
|
|
163
|
+
"schema": "./src/generators/setup-tailwind/schema.json",
|
|
164
|
+
"description": "Configures Tailwind CSS for an application or a buildable/publishable library.",
|
|
165
|
+
"x-deprecated": "Generating Tailwind configuration is no longer maintained. This generator will be removed in Nx 23."
|
|
166
|
+
},
|
|
167
|
+
"stories": {
|
|
168
|
+
"factory": "./src/generators/stories/stories",
|
|
169
|
+
"schema": "./src/generators/stories/schema.json",
|
|
170
|
+
"description": "Creates stories/specs for all components declared in a project."
|
|
171
|
+
},
|
|
172
|
+
"storybook-configuration": {
|
|
173
|
+
"factory": "./src/generators/storybook-configuration/storybook-configuration",
|
|
174
|
+
"schema": "./src/generators/storybook-configuration/schema.json",
|
|
175
|
+
"description": "Adds Storybook configuration to a project."
|
|
176
|
+
},
|
|
177
|
+
"cypress-component-configuration": {
|
|
178
|
+
"factory": "./src/generators/cypress-component-configuration/cypress-component-configuration",
|
|
179
|
+
"schema": "./src/generators/cypress-component-configuration/schema.json",
|
|
180
|
+
"description": "Setup Cypress component testing for a project."
|
|
181
|
+
},
|
|
182
|
+
"web-worker": {
|
|
183
|
+
"factory": "./src/generators/web-worker/web-worker",
|
|
184
|
+
"schema": "./src/generators/web-worker/schema.json",
|
|
185
|
+
"description": "Creates a Web Worker."
|
|
186
|
+
}
|
|
186
187
|
}
|
|
187
|
-
}
|
|
188
188
|
}
|