@nx/angular 22.7.0-beta.7 → 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.
Files changed (50) hide show
  1. package/executors.json +62 -62
  2. package/generators.json +185 -185
  3. package/migrations.json +2412 -2412
  4. package/ng-package.json +19 -19
  5. package/package.json +10 -10
  6. package/project.json +2 -8
  7. package/src/builders/dev-server/schema.json +163 -163
  8. package/src/builders/webpack-browser/schema.json +567 -567
  9. package/src/builders/webpack-server/schema.json +303 -303
  10. package/src/executors/application/schema.json +732 -732
  11. package/src/executors/browser-esbuild/schema.json +548 -548
  12. package/src/executors/delegate-build/schema.json +31 -31
  13. package/src/executors/extract-i18n/schema.json +47 -47
  14. package/src/executors/module-federation-dev-server/schema.json +164 -164
  15. package/src/executors/module-federation-ssr-dev-server/schema.json +119 -119
  16. package/src/executors/ng-packagr-lite/schema.json +35 -35
  17. package/src/executors/package/schema.json +35 -35
  18. package/src/executors/unit-test/schema.json +305 -305
  19. package/src/generators/add-linting/schema.json +48 -48
  20. package/src/generators/application/schema.json +188 -188
  21. package/src/generators/component/schema.json +123 -123
  22. package/src/generators/component-story/schema.json +50 -50
  23. package/src/generators/component-test/schema.json +52 -52
  24. package/src/generators/convert-to-application-executor/schema.json +23 -23
  25. package/src/generators/convert-to-rspack/schema.json +27 -27
  26. package/src/generators/convert-to-with-mf/schema.json +30 -30
  27. package/src/generators/cypress-component-configuration/schema.json +43 -43
  28. package/src/generators/directive/schema.json +89 -89
  29. package/src/generators/federate-module/schema.json +80 -80
  30. package/src/generators/host/schema.json +189 -189
  31. package/src/generators/init/schema.json +31 -31
  32. package/src/generators/library/schema.json +189 -189
  33. package/src/generators/library-secondary-entry-point/schema.json +40 -40
  34. package/src/generators/move/schema.json +53 -53
  35. package/src/generators/ng-add/schema.json +62 -63
  36. package/src/generators/ngrx/schema.json +99 -99
  37. package/src/generators/ngrx-feature-store/schema.json +69 -69
  38. package/src/generators/ngrx-root-store/schema.json +68 -68
  39. package/src/generators/pipe/schema.json +75 -75
  40. package/src/generators/remote/schema.json +182 -182
  41. package/src/generators/scam/schema.json +120 -120
  42. package/src/generators/scam-directive/schema.json +82 -82
  43. package/src/generators/scam-pipe/schema.json +64 -64
  44. package/src/generators/scam-to-standalone/schema.json +29 -29
  45. package/src/generators/setup-mf/schema.json +90 -90
  46. package/src/generators/setup-ssr/schema.json +70 -70
  47. package/src/generators/setup-tailwind/schema.json +39 -39
  48. package/src/generators/stories/schema.json +53 -53
  49. package/src/generators/storybook-configuration/schema.json +80 -80
  50. package/src/generators/web-worker/schema.json +45 -45
@@ -1,123 +1,123 @@
1
1
  {
2
- "$schema": "http://json-schema.org/draft-07/schema",
3
- "title": "Module Federation SSR Dev Server Target",
4
- "continuous": true,
5
- "outputCapture": "direct-nodejs",
6
- "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.",
7
- "type": "object",
8
- "properties": {
9
- "browserTarget": {
10
- "type": "string",
11
- "description": "Browser target to build.",
12
- "pattern": ".+:.+(:.+)?"
13
- },
14
- "serverTarget": {
15
- "type": "string",
16
- "description": "Server target to build.",
17
- "pattern": ".+:.+(:.+)?"
18
- },
19
- "host": {
20
- "type": "string",
21
- "description": "Host to listen on.",
22
- "default": "localhost"
23
- },
24
- "port": {
25
- "type": "number",
26
- "default": 4200,
27
- "description": "Port to start the development server at. Default is 4200. Pass 0 to get a dynamically assigned port."
28
- },
29
- "publicHost": {
30
- "type": "string",
31
- "description": "The URL that the browser client should use to connect to the development server. Use for a complex dev server setup, such as one with reverse proxies."
32
- },
33
- "open": {
34
- "type": "boolean",
35
- "description": "Opens the url in default browser.",
36
- "default": false,
37
- "alias": "o"
38
- },
39
- "progress": {
40
- "type": "boolean",
41
- "description": "Log progress to the console while building."
42
- },
43
- "inspect": {
44
- "type": "boolean",
45
- "description": "Launch the development server in inspector mode and listen on address and port '127.0.0.1:9229'.",
46
- "default": false
47
- },
48
- "ssl": {
49
- "type": "boolean",
50
- "description": "Serve using HTTPS.",
51
- "default": false
52
- },
53
- "sslKey": {
54
- "type": "string",
55
- "description": "SSL key to use for serving HTTPS."
56
- },
57
- "sslCert": {
58
- "type": "string",
59
- "description": "SSL certificate to use for serving HTTPS."
60
- },
61
- "proxyConfig": {
62
- "type": "string",
63
- "description": "Proxy configuration file."
64
- },
65
- "devRemotes": {
66
- "type": "array",
67
- "items": {
68
- "oneOf": [
69
- {
70
- "type": "string"
71
- },
72
- {
73
- "type": "object",
74
- "properties": {
75
- "remoteName": {
76
- "type": "string"
77
- },
78
- "configuration": {
2
+ "$schema": "http://json-schema.org/draft-07/schema",
3
+ "title": "Module Federation SSR Dev Server Target",
4
+ "continuous": true,
5
+ "outputCapture": "direct-nodejs",
6
+ "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.",
7
+ "type": "object",
8
+ "properties": {
9
+ "browserTarget": {
10
+ "type": "string",
11
+ "description": "Browser target to build.",
12
+ "pattern": ".+:.+(:.+)?"
13
+ },
14
+ "serverTarget": {
15
+ "type": "string",
16
+ "description": "Server target to build.",
17
+ "pattern": ".+:.+(:.+)?"
18
+ },
19
+ "host": {
20
+ "type": "string",
21
+ "description": "Host to listen on.",
22
+ "default": "localhost"
23
+ },
24
+ "port": {
25
+ "type": "number",
26
+ "default": 4200,
27
+ "description": "Port to start the development server at. Default is 4200. Pass 0 to get a dynamically assigned port."
28
+ },
29
+ "publicHost": {
30
+ "type": "string",
31
+ "description": "The URL that the browser client should use to connect to the development server. Use for a complex dev server setup, such as one with reverse proxies."
32
+ },
33
+ "open": {
34
+ "type": "boolean",
35
+ "description": "Opens the url in default browser.",
36
+ "default": false,
37
+ "alias": "o"
38
+ },
39
+ "progress": {
40
+ "type": "boolean",
41
+ "description": "Log progress to the console while building."
42
+ },
43
+ "inspect": {
44
+ "type": "boolean",
45
+ "description": "Launch the development server in inspector mode and listen on address and port '127.0.0.1:9229'.",
46
+ "default": false
47
+ },
48
+ "ssl": {
49
+ "type": "boolean",
50
+ "description": "Serve using HTTPS.",
51
+ "default": false
52
+ },
53
+ "sslKey": {
54
+ "type": "string",
55
+ "description": "SSL key to use for serving HTTPS."
56
+ },
57
+ "sslCert": {
58
+ "type": "string",
59
+ "description": "SSL certificate to use for serving HTTPS."
60
+ },
61
+ "proxyConfig": {
62
+ "type": "string",
63
+ "description": "Proxy configuration file."
64
+ },
65
+ "devRemotes": {
66
+ "type": "array",
67
+ "items": {
68
+ "oneOf": [
69
+ {
70
+ "type": "string"
71
+ },
72
+ {
73
+ "type": "object",
74
+ "properties": {
75
+ "remoteName": {
76
+ "type": "string"
77
+ },
78
+ "configuration": {
79
+ "type": "string"
80
+ }
81
+ },
82
+ "required": ["remoteName"],
83
+ "additionalProperties": false
84
+ }
85
+ ]
86
+ },
87
+ "description": "List of remote applications to run in development mode (i.e. using serve target).",
88
+ "x-priority": "important"
89
+ },
90
+ "skipRemotes": {
91
+ "type": "array",
92
+ "items": {
79
93
  "type": "string"
80
- }
81
94
  },
82
- "required": ["remoteName"],
83
- "additionalProperties": false
84
- }
85
- ]
86
- },
87
- "description": "List of remote applications to run in development mode (i.e. using serve target).",
88
- "x-priority": "important"
89
- },
90
- "skipRemotes": {
91
- "type": "array",
92
- "items": {
93
- "type": "string"
94
- },
95
- "description": "List of remote applications to not automatically serve, either statically or in development mode."
96
- },
97
- "verbose": {
98
- "type": "boolean",
99
- "description": "Adds more details to output logging.",
100
- "default": false
101
- },
102
- "pathToManifestFile": {
103
- "type": "string",
104
- "description": "Path to a Module Federation manifest file (e.g. `my/path/to/module-federation.manifest.json`) containing the dynamic remote applications relative to the workspace root."
105
- },
106
- "isInitialHost": {
107
- "type": "boolean",
108
- "description": "Whether the host that is running this executor is the first in the project tree to do so.",
109
- "default": true,
110
- "x-priority": "internal"
111
- },
112
- "parallel": {
113
- "type": "number",
114
- "description": "Max number of parallel processes for building static remotes"
115
- },
116
- "staticRemotesPort": {
117
- "type": "number",
118
- "description": "The port at which to serve the file-server for the static remotes."
119
- }
120
- },
121
- "additionalProperties": false,
122
- "required": ["browserTarget", "serverTarget"]
95
+ "description": "List of remote applications to not automatically serve, either statically or in development mode."
96
+ },
97
+ "verbose": {
98
+ "type": "boolean",
99
+ "description": "Adds more details to output logging.",
100
+ "default": false
101
+ },
102
+ "pathToManifestFile": {
103
+ "type": "string",
104
+ "description": "Path to a Module Federation manifest file (e.g. `my/path/to/module-federation.manifest.json`) containing the dynamic remote applications relative to the workspace root."
105
+ },
106
+ "isInitialHost": {
107
+ "type": "boolean",
108
+ "description": "Whether the host that is running this executor is the first in the project tree to do so.",
109
+ "default": true,
110
+ "x-priority": "internal"
111
+ },
112
+ "parallel": {
113
+ "type": "number",
114
+ "description": "Max number of parallel processes for building static remotes"
115
+ },
116
+ "staticRemotesPort": {
117
+ "type": "number",
118
+ "description": "The port at which to serve the file-server for the static remotes."
119
+ }
120
+ },
121
+ "additionalProperties": false,
122
+ "required": ["browserTarget", "serverTarget"]
123
123
  }
@@ -1,38 +1,38 @@
1
1
  {
2
- "version": 2,
3
- "outputCapture": "direct-nodejs",
4
- "$schema": "https://json-schema.org/schema",
5
- "title": "ng-packagr Target",
6
- "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.",
7
- "cli": "nx",
8
- "type": "object",
9
- "presets": [
10
- {
11
- "name": "Updating Project Dependencies for Buildable Library",
12
- "keys": ["project"]
13
- }
14
- ],
15
- "properties": {
16
- "project": {
17
- "type": "string",
18
- "description": "The file path for the ng-packagr configuration file, relative to the workspace root."
2
+ "version": 2,
3
+ "outputCapture": "direct-nodejs",
4
+ "$schema": "https://json-schema.org/schema",
5
+ "title": "ng-packagr Target",
6
+ "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.",
7
+ "cli": "nx",
8
+ "type": "object",
9
+ "presets": [
10
+ {
11
+ "name": "Updating Project Dependencies for Buildable Library",
12
+ "keys": ["project"]
13
+ }
14
+ ],
15
+ "properties": {
16
+ "project": {
17
+ "type": "string",
18
+ "description": "The file path for the ng-packagr configuration file, relative to the workspace root."
19
+ },
20
+ "tsConfig": {
21
+ "type": "string",
22
+ "description": "The full path for the TypeScript configuration file, relative to the workspace root.",
23
+ "x-completion-type": "file",
24
+ "x-completion-glob": "tsconfig.*.json",
25
+ "x-priority": "important"
26
+ },
27
+ "watch": {
28
+ "type": "boolean",
29
+ "description": "Whether to run a build when any file changes.",
30
+ "default": false
31
+ },
32
+ "poll": {
33
+ "type": "number",
34
+ "description": "Enable and define the file watching poll time period in milliseconds."
35
+ }
19
36
  },
20
- "tsConfig": {
21
- "type": "string",
22
- "description": "The full path for the TypeScript configuration file, relative to the workspace root.",
23
- "x-completion-type": "file",
24
- "x-completion-glob": "tsconfig.*.json",
25
- "x-priority": "important"
26
- },
27
- "watch": {
28
- "type": "boolean",
29
- "description": "Whether to run a build when any file changes.",
30
- "default": false
31
- },
32
- "poll": {
33
- "type": "number",
34
- "description": "Enable and define the file watching poll time period in milliseconds."
35
- }
36
- },
37
- "additionalProperties": false
37
+ "additionalProperties": false
38
38
  }
@@ -1,38 +1,38 @@
1
1
  {
2
- "version": 2,
3
- "outputCapture": "direct-nodejs",
4
- "$schema": "https://json-schema.org/schema",
5
- "title": "ng-packagr Target",
6
- "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.",
7
- "cli": "nx",
8
- "type": "object",
9
- "presets": [
10
- {
11
- "name": "Updating Project Dependencies for Publishable Library",
12
- "keys": ["project"]
13
- }
14
- ],
15
- "properties": {
16
- "project": {
17
- "type": "string",
18
- "description": "The file path for the ng-packagr configuration file, relative to the workspace root."
2
+ "version": 2,
3
+ "outputCapture": "direct-nodejs",
4
+ "$schema": "https://json-schema.org/schema",
5
+ "title": "ng-packagr Target",
6
+ "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.",
7
+ "cli": "nx",
8
+ "type": "object",
9
+ "presets": [
10
+ {
11
+ "name": "Updating Project Dependencies for Publishable Library",
12
+ "keys": ["project"]
13
+ }
14
+ ],
15
+ "properties": {
16
+ "project": {
17
+ "type": "string",
18
+ "description": "The file path for the ng-packagr configuration file, relative to the workspace root."
19
+ },
20
+ "tsConfig": {
21
+ "type": "string",
22
+ "description": "The full path for the TypeScript configuration file, relative to the workspace root.",
23
+ "x-completion-type": "file",
24
+ "x-completion-glob": "tsconfig.*.json",
25
+ "x-priority": "important"
26
+ },
27
+ "watch": {
28
+ "type": "boolean",
29
+ "description": "Whether to run a build when any file changes.",
30
+ "default": false
31
+ },
32
+ "poll": {
33
+ "type": "number",
34
+ "description": "Enable and define the file watching poll time period in milliseconds."
35
+ }
19
36
  },
20
- "tsConfig": {
21
- "type": "string",
22
- "description": "The full path for the TypeScript configuration file, relative to the workspace root.",
23
- "x-completion-type": "file",
24
- "x-completion-glob": "tsconfig.*.json",
25
- "x-priority": "important"
26
- },
27
- "watch": {
28
- "type": "boolean",
29
- "description": "Whether to run a build when any file changes.",
30
- "default": false
31
- },
32
- "poll": {
33
- "type": "number",
34
- "description": "Enable and define the file watching poll time period in milliseconds."
35
- }
36
- },
37
- "additionalProperties": false
37
+ "additionalProperties": false
38
38
  }