@nx/angular 0.0.0-pr-22179-271588f

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 (940) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +68 -0
  3. package/esm2022/index.mjs +2 -0
  4. package/esm2022/mf/index.mjs +2 -0
  5. package/esm2022/mf/mf.mjs +48 -0
  6. package/esm2022/mf/nx-angular-mf.mjs +5 -0
  7. package/esm2022/nx-angular.mjs +5 -0
  8. package/esm2022/src/runtime/nx/data-persistence.mjs +344 -0
  9. package/esm2022/testing/index.mjs +2 -0
  10. package/esm2022/testing/nx-angular-testing.mjs +5 -0
  11. package/esm2022/testing/src/testing-utils.mjs +36 -0
  12. package/executors.d.ts +16 -0
  13. package/executors.js +17 -0
  14. package/executors.json +61 -0
  15. package/fesm2022/nx-angular-mf.mjs +54 -0
  16. package/fesm2022/nx-angular-mf.mjs.map +1 -0
  17. package/fesm2022/nx-angular-testing.mjs +43 -0
  18. package/fesm2022/nx-angular-testing.mjs.map +1 -0
  19. package/fesm2022/nx-angular.mjs +351 -0
  20. package/fesm2022/nx-angular.mjs.map +1 -0
  21. package/generators.d.ts +30 -0
  22. package/generators.js +35 -0
  23. package/generators.json +186 -0
  24. package/index.d.ts +1 -0
  25. package/index.js +8 -0
  26. package/mf/index.d.ts +1 -0
  27. package/mf/index.js +7 -0
  28. package/mf/mf.d.ts +4 -0
  29. package/mf/mf.js +53 -0
  30. package/mf/ng-package.json +6 -0
  31. package/migrations.json +1717 -0
  32. package/module-federation/index.d.ts +2 -0
  33. package/module-federation/index.js +7 -0
  34. package/ng-package.json +31 -0
  35. package/package.json +109 -0
  36. package/plugins/component-testing.d.ts +20 -0
  37. package/plugins/component-testing.js +325 -0
  38. package/src/builders/dev-server/dev-server.impl.d.ts +4 -0
  39. package/src/builders/dev-server/dev-server.impl.js +160 -0
  40. package/src/builders/dev-server/lib/index.d.ts +2 -0
  41. package/src/builders/dev-server/lib/index.js +5 -0
  42. package/src/builders/dev-server/lib/normalize-options.d.ts +2 -0
  43. package/src/builders/dev-server/lib/normalize-options.js +20 -0
  44. package/src/builders/dev-server/lib/validate-options.d.ts +2 -0
  45. package/src/builders/dev-server/lib/validate-options.js +22 -0
  46. package/src/builders/dev-server/schema.d.ts +39 -0
  47. package/src/builders/dev-server/schema.json +153 -0
  48. package/src/builders/module-federation-dev-ssr/module-federation-dev-ssr.impl.d.ts +4 -0
  49. package/src/builders/module-federation-dev-ssr/module-federation-dev-ssr.impl.js +99 -0
  50. package/src/builders/module-federation-dev-ssr/schema.d.ts +17 -0
  51. package/src/builders/module-federation-dev-ssr/schema.json +90 -0
  52. package/src/builders/utilities/buildable-libs.d.ts +9 -0
  53. package/src/builders/utilities/buildable-libs.js +15 -0
  54. package/src/builders/utilities/module-federation.d.ts +6 -0
  55. package/src/builders/utilities/module-federation.js +95 -0
  56. package/src/builders/utilities/webpack.d.ts +6 -0
  57. package/src/builders/utilities/webpack.js +45 -0
  58. package/src/builders/webpack-browser/schema.d.ts +13 -0
  59. package/src/builders/webpack-browser/schema.json +600 -0
  60. package/src/builders/webpack-browser/webpack-browser.impl.d.ts +5 -0
  61. package/src/builders/webpack-browser/webpack-browser.impl.js +79 -0
  62. package/src/builders/webpack-server/schema.d.ts +8 -0
  63. package/src/builders/webpack-server/schema.json +321 -0
  64. package/src/builders/webpack-server/validate-options.d.ts +2 -0
  65. package/src/builders/webpack-server/validate-options.js +33 -0
  66. package/src/builders/webpack-server/webpack-server.impl.d.ts +5 -0
  67. package/src/builders/webpack-server/webpack-server.impl.js +61 -0
  68. package/src/executors/application/application.impl.d.ts +3 -0
  69. package/src/executors/application/application.impl.js +37 -0
  70. package/src/executors/application/schema.d.ts +8 -0
  71. package/src/executors/application/schema.json +678 -0
  72. package/src/executors/application/utils/validate-options.d.ts +2 -0
  73. package/src/executors/application/utils/validate-options.js +47 -0
  74. package/src/executors/browser-esbuild/browser-esbuild.impl.d.ts +9 -0
  75. package/src/executors/browser-esbuild/browser-esbuild.impl.js +34 -0
  76. package/src/executors/browser-esbuild/schema.d.ts +7 -0
  77. package/src/executors/browser-esbuild/schema.json +585 -0
  78. package/src/executors/delegate-build/delegate-build.impl.d.ts +8 -0
  79. package/src/executors/delegate-build/delegate-build.impl.js +17 -0
  80. package/src/executors/delegate-build/schema.d.ts +6 -0
  81. package/src/executors/delegate-build/schema.json +34 -0
  82. package/src/executors/extract-i18n/extract-i18n.impl.d.ts +3 -0
  83. package/src/executors/extract-i18n/extract-i18n.impl.js +43 -0
  84. package/src/executors/extract-i18n/schema.d.ts +8 -0
  85. package/src/executors/extract-i18n/schema.json +45 -0
  86. package/src/executors/module-federation-dev-server/lib/build-static-remotes.d.ts +4 -0
  87. package/src/executors/module-federation-dev-server/lib/build-static-remotes.js +48 -0
  88. package/src/executors/module-federation-dev-server/lib/index.d.ts +5 -0
  89. package/src/executors/module-federation-dev-server/lib/index.js +8 -0
  90. package/src/executors/module-federation-dev-server/lib/normalize-options.d.ts +2 -0
  91. package/src/executors/module-federation-dev-server/lib/normalize-options.js +23 -0
  92. package/src/executors/module-federation-dev-server/lib/parse-static-remotes-config.d.ts +11 -0
  93. package/src/executors/module-federation-dev-server/lib/parse-static-remotes-config.js +18 -0
  94. package/src/executors/module-federation-dev-server/lib/start-dev-remotes.d.ts +9 -0
  95. package/src/executors/module-federation-dev-server/lib/start-dev-remotes.js +29 -0
  96. package/src/executors/module-federation-dev-server/lib/start-static-remotes-file-server.d.ts +9 -0
  97. package/src/executors/module-federation-dev-server/lib/start-static-remotes-file-server.js +46 -0
  98. package/src/executors/module-federation-dev-server/module-federation-dev-server.impl.d.ts +4 -0
  99. package/src/executors/module-federation-dev-server/module-federation-dev-server.impl.js +115 -0
  100. package/src/executors/module-federation-dev-server/schema.d.ts +43 -0
  101. package/src/executors/module-federation-dev-server/schema.json +165 -0
  102. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-packagr.d.ts +3 -0
  103. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-packagr.js +34 -0
  104. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/compile-ngc.di.d.ts +14 -0
  105. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/compile-ngc.di.js +27 -0
  106. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/compile-ngc.transform.d.ts +12 -0
  107. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/compile-ngc.transform.js +52 -0
  108. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/entry-point.di.d.ts +15 -0
  109. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/entry-point.di.js +28 -0
  110. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/entry-point.transform.d.ts +30 -0
  111. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/entry-point.transform.js +52 -0
  112. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/write-package.di.d.ts +12 -0
  113. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/write-package.di.js +20 -0
  114. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/write-package.transform.d.ts +9 -0
  115. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/entry-point/write-package.transform.js +319 -0
  116. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/options.di.d.ts +14 -0
  117. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/options.di.js +34 -0
  118. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/package.di.d.ts +14 -0
  119. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ng-package/package.di.js +37 -0
  120. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ngc/compile-source-files.d.ts +13 -0
  121. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/ngc/compile-source-files.js +178 -0
  122. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/styles/stylesheet-processor.d.ts +42 -0
  123. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/styles/stylesheet-processor.di.d.ts +10 -0
  124. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/styles/stylesheet-processor.di.js +17 -0
  125. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/pre-v17/styles/stylesheet-processor.js +201 -0
  126. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/v17+/ng-package/entry-point/write-bundles.di.d.ts +2 -0
  127. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/v17+/ng-package/entry-point/write-bundles.di.js +12 -0
  128. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/v17+/ng-package/entry-point/write-bundles.transform.d.ts +8 -0
  129. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/v17+/ng-package/entry-point/write-bundles.transform.js +12 -0
  130. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/v17+/ng-package/entry-point/write-package.di.d.ts +8 -0
  131. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/v17+/ng-package/entry-point/write-package.di.js +18 -0
  132. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/v17+/ng-package/entry-point/write-package.transform.d.ts +8 -0
  133. package/src/executors/ng-packagr-lite/ng-packagr-adjustments/v17+/ng-package/entry-point/write-package.transform.js +285 -0
  134. package/src/executors/ng-packagr-lite/ng-packagr-lite.impl.d.ts +6 -0
  135. package/src/executors/ng-packagr-lite/ng-packagr-lite.impl.js +20 -0
  136. package/src/executors/ng-packagr-lite/schema.json +43 -0
  137. package/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/compile-ngc.di.d.ts +14 -0
  138. package/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/compile-ngc.di.js +26 -0
  139. package/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/compile-ngc.transform.d.ts +12 -0
  140. package/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/compile-ngc.transform.js +70 -0
  141. package/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/entry-point.di.d.ts +13 -0
  142. package/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/entry-point.di.js +32 -0
  143. package/src/executors/package/ng-packagr-adjustments/ng-package/options.di.d.ts +14 -0
  144. package/src/executors/package/ng-packagr-adjustments/ng-package/options.di.js +34 -0
  145. package/src/executors/package/ng-packagr-adjustments/ng-package/package.di.d.ts +14 -0
  146. package/src/executors/package/ng-packagr-adjustments/ng-package/package.di.js +37 -0
  147. package/src/executors/package/ng-packagr-adjustments/ng-packagr.d.ts +3 -0
  148. package/src/executors/package/ng-packagr-adjustments/ng-packagr.js +28 -0
  149. package/src/executors/package/ng-packagr-adjustments/ngc/compile-source-files.d.ts +14 -0
  150. package/src/executors/package/ng-packagr-adjustments/ngc/compile-source-files.js +183 -0
  151. package/src/executors/package/ng-packagr-adjustments/styles/stylesheet-processor.d.ts +36 -0
  152. package/src/executors/package/ng-packagr-adjustments/styles/stylesheet-processor.di.d.ts +10 -0
  153. package/src/executors/package/ng-packagr-adjustments/styles/stylesheet-processor.di.js +17 -0
  154. package/src/executors/package/ng-packagr-adjustments/styles/stylesheet-processor.js +194 -0
  155. package/src/executors/package/ng-packagr-adjustments/utils/ng-compiler-cli.d.ts +1 -0
  156. package/src/executors/package/ng-packagr-adjustments/utils/ng-compiler-cli.js +10 -0
  157. package/src/executors/package/package.impl.d.ts +16 -0
  158. package/src/executors/package/package.impl.js +42 -0
  159. package/src/executors/package/schema.d.ts +6 -0
  160. package/src/executors/package/schema.json +45 -0
  161. package/src/executors/utilities/angular-version-utils.d.ts +6 -0
  162. package/src/executors/utilities/angular-version-utils.js +19 -0
  163. package/src/executors/utilities/buildable-libs.d.ts +6 -0
  164. package/src/executors/utilities/buildable-libs.js +16 -0
  165. package/src/executors/utilities/esbuild-extensions.d.ts +10 -0
  166. package/src/executors/utilities/esbuild-extensions.js +50 -0
  167. package/src/executors/utilities/module-loader.d.ts +15 -0
  168. package/src/executors/utilities/module-loader.js +52 -0
  169. package/src/executors/utilities/ng-compiler-cli.d.ts +1 -0
  170. package/src/executors/utilities/ng-compiler-cli.js +8 -0
  171. package/src/executors/utilities/ng-packagr/stylesheet-processor.d.ts +27 -0
  172. package/src/executors/utilities/ng-packagr/stylesheet-processor.di.d.ts +2 -0
  173. package/src/executors/utilities/ng-packagr/stylesheet-processor.di.js +10 -0
  174. package/src/executors/utilities/ng-packagr/stylesheet-processor.js +130 -0
  175. package/src/executors/utilities/ng-packagr/tailwindcss.d.ts +7 -0
  176. package/src/executors/utilities/ng-packagr/tailwindcss.js +56 -0
  177. package/src/executors/utilities/patch-builder-context.d.ts +3 -0
  178. package/src/executors/utilities/patch-builder-context.js +41 -0
  179. package/src/executors/utilities/typescript.d.ts +13 -0
  180. package/src/executors/utilities/typescript.js +43 -0
  181. package/src/generators/add-linting/add-linting.d.ts +4 -0
  182. package/src/generators/add-linting/add-linting.js +105 -0
  183. package/src/generators/add-linting/lib/add-angular-eslint-dependencies.d.ts +2 -0
  184. package/src/generators/add-linting/lib/add-angular-eslint-dependencies.js +16 -0
  185. package/src/generators/add-linting/lib/create-eslint-configuration.d.ts +81 -0
  186. package/src/generators/add-linting/lib/create-eslint-configuration.js +121 -0
  187. package/src/generators/add-linting/schema.d.ts +9 -0
  188. package/src/generators/add-linting/schema.json +51 -0
  189. package/src/generators/application/application.d.ts +5 -0
  190. package/src/generators/application/application.js +76 -0
  191. package/src/generators/application/files/base/src/assets/.gitkeep__tpl__ +0 -0
  192. package/src/generators/application/files/base/src/favicon.ico +0 -0
  193. package/src/generators/application/files/base/src/index.html__tpl__ +13 -0
  194. package/src/generators/application/files/base/src/styles.__style__ +1 -0
  195. package/src/generators/application/files/base/tsconfig.app.json__tpl__ +10 -0
  196. package/src/generators/application/files/base/tsconfig.editor.json__tpl__ +5 -0
  197. package/src/generators/application/files/base/tsconfig.json__tpl__ +18 -0
  198. package/src/generators/application/files/ng-module/src/app/app.component.__style__ +0 -0
  199. package/src/generators/application/files/ng-module/src/app/app.component.html__tpl__ +1 -0
  200. package/src/generators/application/files/ng-module/src/app/app.component.spec.ts__tpl__ +28 -0
  201. package/src/generators/application/files/ng-module/src/app/app.component.ts__tpl__ +15 -0
  202. package/src/generators/application/files/ng-module/src/app/app.module.ts__tpl__ +17 -0
  203. package/src/generators/application/files/ng-module/src/app/app.routes.ts__tpl__ +3 -0
  204. package/src/generators/application/files/ng-module/src/app/nx-welcome.component.ts__tpl__ +834 -0
  205. package/src/generators/application/files/ng-module/src/main.ts__tpl__ +6 -0
  206. package/src/generators/application/files/standalone-components/src/app/app.component.__style__ +0 -0
  207. package/src/generators/application/files/standalone-components/src/app/app.component.html__tpl__ +1 -0
  208. package/src/generators/application/files/standalone-components/src/app/app.component.spec.ts__tpl__ +27 -0
  209. package/src/generators/application/files/standalone-components/src/app/app.component.ts__tpl__ +19 -0
  210. package/src/generators/application/files/standalone-components/src/app/app.config.ts__tpl__ +7 -0
  211. package/src/generators/application/files/standalone-components/src/app/app.routes.ts__tpl__ +3 -0
  212. package/src/generators/application/files/standalone-components/src/app/nx-welcome.component.ts__tpl__ +837 -0
  213. package/src/generators/application/files/standalone-components/src/main.ts__tpl__ +7 -0
  214. package/src/generators/application/lib/add-e2e.d.ts +3 -0
  215. package/src/generators/application/lib/add-e2e.js +77 -0
  216. package/src/generators/application/lib/add-linting.d.ts +3 -0
  217. package/src/generators/application/lib/add-linting.js +20 -0
  218. package/src/generators/application/lib/add-proxy-config.d.ts +3 -0
  219. package/src/generators/application/lib/add-proxy-config.js +25 -0
  220. package/src/generators/application/lib/add-unit-test-runner.d.ts +3 -0
  221. package/src/generators/application/lib/add-unit-test-runner.js +16 -0
  222. package/src/generators/application/lib/create-files.d.ts +3 -0
  223. package/src/generators/application/lib/create-files.js +58 -0
  224. package/src/generators/application/lib/create-project.d.ts +3 -0
  225. package/src/generators/application/lib/create-project.js +111 -0
  226. package/src/generators/application/lib/enable-strict-type-checking.d.ts +3 -0
  227. package/src/generators/application/lib/enable-strict-type-checking.js +36 -0
  228. package/src/generators/application/lib/index.d.ts +12 -0
  229. package/src/generators/application/lib/index.js +15 -0
  230. package/src/generators/application/lib/normalize-options.d.ts +4 -0
  231. package/src/generators/application/lib/normalize-options.js +56 -0
  232. package/src/generators/application/lib/normalized-schema.d.ts +15 -0
  233. package/src/generators/application/lib/normalized-schema.js +2 -0
  234. package/src/generators/application/lib/set-app-strict-default.d.ts +2 -0
  235. package/src/generators/application/lib/set-app-strict-default.js +14 -0
  236. package/src/generators/application/lib/set-generator-defaults.d.ts +3 -0
  237. package/src/generators/application/lib/set-generator-defaults.js +17 -0
  238. package/src/generators/application/lib/update-editor-tsconfig.d.ts +3 -0
  239. package/src/generators/application/lib/update-editor-tsconfig.js +22 -0
  240. package/src/generators/application/schema.d.ts +34 -0
  241. package/src/generators/application/schema.json +192 -0
  242. package/src/generators/component/component.d.ts +5 -0
  243. package/src/generators/component/component.js +57 -0
  244. package/src/generators/component/files/__fileName__.__style__ +6 -0
  245. package/src/generators/component/files/__fileName__.html__tpl__ +1 -0
  246. package/src/generators/component/files/__fileName__.spec.ts__tpl__ +21 -0
  247. package/src/generators/component/files/__fileName__.ts__tpl__ +27 -0
  248. package/src/generators/component/lib/component.d.ts +3 -0
  249. package/src/generators/component/lib/component.js +46 -0
  250. package/src/generators/component/lib/index.d.ts +4 -0
  251. package/src/generators/component/lib/index.js +7 -0
  252. package/src/generators/component/lib/module.d.ts +3 -0
  253. package/src/generators/component/lib/module.js +63 -0
  254. package/src/generators/component/lib/normalize-options.d.ts +3 -0
  255. package/src/generators/component/lib/normalize-options.js +41 -0
  256. package/src/generators/component/lib/set-generator-defaults.d.ts +3 -0
  257. package/src/generators/component/lib/set-generator-defaults.js +14 -0
  258. package/src/generators/component/schema.d.ts +48 -0
  259. package/src/generators/component/schema.json +138 -0
  260. package/src/generators/component-cypress-spec/component-cypress-spec.d.ts +4 -0
  261. package/src/generators/component-cypress-spec/component-cypress-spec.js +36 -0
  262. package/src/generators/component-cypress-spec/files/__componentFileName__.__fileExt__ +17 -0
  263. package/src/generators/component-cypress-spec/lib/get-args-default-value.d.ts +2 -0
  264. package/src/generators/component-cypress-spec/lib/get-args-default-value.js +25 -0
  265. package/src/generators/component-cypress-spec/lib/get-component-selector.d.ts +2 -0
  266. package/src/generators/component-cypress-spec/lib/get-component-selector.js +24 -0
  267. package/src/generators/component-cypress-spec/schema.d.ts +10 -0
  268. package/src/generators/component-cypress-spec/schema.json +65 -0
  269. package/src/generators/component-story/component-story.d.ts +4 -0
  270. package/src/generators/component-story/component-story.js +28 -0
  271. package/src/generators/component-story/files/__componentFileName__.stories.ts__tmpl__ +31 -0
  272. package/src/generators/component-story/schema.d.ts +8 -0
  273. package/src/generators/component-story/schema.json +53 -0
  274. package/src/generators/component-test/component-test.d.ts +4 -0
  275. package/src/generators/component-test/component-test.js +31 -0
  276. package/src/generators/component-test/files/__componentFileName__.cy.ts__tpl__ +21 -0
  277. package/src/generators/component-test/schema.d.ts +12 -0
  278. package/src/generators/component-test/schema.json +49 -0
  279. package/src/generators/convert-to-application-executor/convert-to-application-executor.d.ts +4 -0
  280. package/src/generators/convert-to-application-executor/convert-to-application-executor.js +240 -0
  281. package/src/generators/convert-to-application-executor/schema.d.ts +4 -0
  282. package/src/generators/convert-to-application-executor/schema.json +26 -0
  283. package/src/generators/convert-to-with-mf/convert-to-with-mf.d.ts +4 -0
  284. package/src/generators/convert-to-with-mf/convert-to-with-mf.js +32 -0
  285. package/src/generators/convert-to-with-mf/convert-to-with-mf.test-data.d.ts +5 -0
  286. package/src/generators/convert-to-with-mf/convert-to-with-mf.test-data.js +448 -0
  287. package/src/generators/convert-to-with-mf/lib/check-name-matches.d.ts +2 -0
  288. package/src/generators/convert-to-with-mf/lib/check-name-matches.js +25 -0
  289. package/src/generators/convert-to-with-mf/lib/check-shared-npm-packages.d.ts +2 -0
  290. package/src/generators/convert-to-with-mf/lib/check-shared-npm-packages.js +50 -0
  291. package/src/generators/convert-to-with-mf/lib/get-webpack-config-path.d.ts +2 -0
  292. package/src/generators/convert-to-with-mf/lib/get-webpack-config-path.js +19 -0
  293. package/src/generators/convert-to-with-mf/lib/index.d.ts +6 -0
  294. package/src/generators/convert-to-with-mf/lib/index.js +9 -0
  295. package/src/generators/convert-to-with-mf/lib/is-host-remote-config.d.ts +5 -0
  296. package/src/generators/convert-to-with-mf/lib/is-host-remote-config.js +68 -0
  297. package/src/generators/convert-to-with-mf/lib/parse-ast-webpack-config.d.ts +2 -0
  298. package/src/generators/convert-to-with-mf/lib/parse-ast-webpack-config.js +14 -0
  299. package/src/generators/convert-to-with-mf/lib/write-new-webpack-config.d.ts +3 -0
  300. package/src/generators/convert-to-with-mf/lib/write-new-webpack-config.js +51 -0
  301. package/src/generators/convert-to-with-mf/schema.d.ts +4 -0
  302. package/src/generators/convert-to-with-mf/schema.json +33 -0
  303. package/src/generators/cypress-component-configuration/cypress-component-configuration.d.ts +9 -0
  304. package/src/generators/cypress-component-configuration/cypress-component-configuration.js +108 -0
  305. package/src/generators/cypress-component-configuration/schema.d.ts +6 -0
  306. package/src/generators/cypress-component-configuration/schema.json +40 -0
  307. package/src/generators/directive/directive.d.ts +4 -0
  308. package/src/generators/directive/directive.js +29 -0
  309. package/src/generators/directive/files/__fileName__.spec.ts__tpl__ +8 -0
  310. package/src/generators/directive/files/__fileName__.ts__tpl__ +9 -0
  311. package/src/generators/directive/lib/index.d.ts +1 -0
  312. package/src/generators/directive/lib/index.js +4 -0
  313. package/src/generators/directive/lib/normalize-options.d.ts +3 -0
  314. package/src/generators/directive/lib/normalize-options.js +37 -0
  315. package/src/generators/directive/schema.d.ts +35 -0
  316. package/src/generators/directive/schema.json +96 -0
  317. package/src/generators/federate-module/federate-module.d.ts +4 -0
  318. package/src/generators/federate-module/federate-module.js +40 -0
  319. package/src/generators/federate-module/lib/add-file-to-remote-tsconfig.d.ts +2 -0
  320. package/src/generators/federate-module/lib/add-file-to-remote-tsconfig.js +15 -0
  321. package/src/generators/federate-module/lib/add-path-to-exposes.d.ts +8 -0
  322. package/src/generators/federate-module/lib/add-path-to-exposes.js +78 -0
  323. package/src/generators/federate-module/lib/add-path-to-ts-config.d.ts +8 -0
  324. package/src/generators/federate-module/lib/add-path-to-ts-config.js +12 -0
  325. package/src/generators/federate-module/lib/add-remote.d.ts +7 -0
  326. package/src/generators/federate-module/lib/add-remote.js +45 -0
  327. package/src/generators/federate-module/lib/check-remote-exists.d.ts +2 -0
  328. package/src/generators/federate-module/lib/check-remote-exists.js +22 -0
  329. package/src/generators/federate-module/lib/index.d.ts +4 -0
  330. package/src/generators/federate-module/lib/index.js +7 -0
  331. package/src/generators/federate-module/schema.d.ts +15 -0
  332. package/src/generators/federate-module/schema.json +81 -0
  333. package/src/generators/host/files/common/pre-v17/src/main.server.ts__tmpl__ +66 -0
  334. package/src/generators/host/files/common/v17+/src/main.server.ts__tmpl__ +67 -0
  335. package/src/generators/host/files/js/webpack.server.config.js__tmpl__ +3 -0
  336. package/src/generators/host/files/ts/webpack.server.config.ts__tmpl__ +4 -0
  337. package/src/generators/host/host.d.ts +5 -0
  338. package/src/generators/host/host.js +101 -0
  339. package/src/generators/host/lib/index.d.ts +1 -0
  340. package/src/generators/host/lib/index.js +4 -0
  341. package/src/generators/host/lib/update-ssr-setup.d.ts +3 -0
  342. package/src/generators/host/lib/update-ssr-setup.js +40 -0
  343. package/src/generators/host/schema.d.ts +33 -0
  344. package/src/generators/host/schema.json +185 -0
  345. package/src/generators/init/init.d.ts +4 -0
  346. package/src/generators/init/init.js +65 -0
  347. package/src/generators/init/schema.d.ts +6 -0
  348. package/src/generators/init/schema.json +34 -0
  349. package/src/generators/library/files/base/README.md__tpl__ +9 -0
  350. package/src/generators/library/files/base/ng-package.json__tpl__ +7 -0
  351. package/src/generators/library/files/base/package.json__tpl__ +12 -0
  352. package/src/generators/library/files/base/tsconfig.json__tpl__ +14 -0
  353. package/src/generators/library/files/base/tsconfig.lib.json__tpl__ +17 -0
  354. package/src/generators/library/files/base/tsconfig.lib.prod.json__tpl__ +9 -0
  355. package/src/generators/library/files/ng-module/src/index.ts__tpl__ +2 -0
  356. package/src/generators/library/files/ng-module/src/lib/__libFileName__.module.ts__tpl__ +9 -0
  357. package/src/generators/library/files/ng-module/src/lib/lib.routes.ts__tpl__ +5 -0
  358. package/src/generators/library/files/standalone-components/src/index.ts__tpl__ +1 -0
  359. package/src/generators/library/files/standalone-components/src/lib/lib.routes.ts__tpl__ +6 -0
  360. package/src/generators/library/lib/add-children.d.ts +3 -0
  361. package/src/generators/library/lib/add-children.js +30 -0
  362. package/src/generators/library/lib/add-load-children.d.ts +3 -0
  363. package/src/generators/library/lib/add-load-children.js +22 -0
  364. package/src/generators/library/lib/add-module.d.ts +3 -0
  365. package/src/generators/library/lib/add-module.js +14 -0
  366. package/src/generators/library/lib/add-project.d.ts +4 -0
  367. package/src/generators/library/lib/add-project.js +41 -0
  368. package/src/generators/library/lib/add-standalone-component.d.ts +3 -0
  369. package/src/generators/library/lib/add-standalone-component.js +29 -0
  370. package/src/generators/library/lib/create-files.d.ts +4 -0
  371. package/src/generators/library/lib/create-files.js +53 -0
  372. package/src/generators/library/lib/enable-strict-type-checking.d.ts +7 -0
  373. package/src/generators/library/lib/enable-strict-type-checking.js +48 -0
  374. package/src/generators/library/lib/normalize-options.d.ts +4 -0
  375. package/src/generators/library/lib/normalize-options.js +77 -0
  376. package/src/generators/library/lib/normalized-schema.d.ts +55 -0
  377. package/src/generators/library/lib/normalized-schema.js +2 -0
  378. package/src/generators/library/lib/set-generator-defaults.d.ts +3 -0
  379. package/src/generators/library/lib/set-generator-defaults.js +15 -0
  380. package/src/generators/library/lib/update-lib-package-npm-scope.d.ts +3 -0
  381. package/src/generators/library/lib/update-lib-package-npm-scope.js +11 -0
  382. package/src/generators/library/lib/update-tsconfig.d.ts +3 -0
  383. package/src/generators/library/lib/update-tsconfig.js +37 -0
  384. package/src/generators/library/library.d.ts +5 -0
  385. package/src/generators/library/library.js +125 -0
  386. package/src/generators/library/schema.d.ts +44 -0
  387. package/src/generators/library/schema.json +208 -0
  388. package/src/generators/library-secondary-entry-point/files/README.md__tmpl__ +3 -0
  389. package/src/generators/library-secondary-entry-point/files/ng-package.json__tmpl__ +5 -0
  390. package/src/generators/library-secondary-entry-point/files/src/index.ts__tmpl__ +1 -0
  391. package/src/generators/library-secondary-entry-point/files/src/lib/__fileName__.module.ts__tmpl__ +7 -0
  392. package/src/generators/library-secondary-entry-point/lib/add-files.d.ts +3 -0
  393. package/src/generators/library-secondary-entry-point/lib/add-files.js +16 -0
  394. package/src/generators/library-secondary-entry-point/lib/add-path-mapping.d.ts +3 -0
  395. package/src/generators/library-secondary-entry-point/lib/add-path-mapping.js +16 -0
  396. package/src/generators/library-secondary-entry-point/lib/index.d.ts +4 -0
  397. package/src/generators/library-secondary-entry-point/lib/index.js +7 -0
  398. package/src/generators/library-secondary-entry-point/lib/normalize-options.d.ts +3 -0
  399. package/src/generators/library-secondary-entry-point/lib/normalize-options.js +31 -0
  400. package/src/generators/library-secondary-entry-point/lib/update-tsconfig-included-files.d.ts +3 -0
  401. package/src/generators/library-secondary-entry-point/lib/update-tsconfig-included-files.js +26 -0
  402. package/src/generators/library-secondary-entry-point/library-secondary-entry-point.d.ts +4 -0
  403. package/src/generators/library-secondary-entry-point/library-secondary-entry-point.js +16 -0
  404. package/src/generators/library-secondary-entry-point/schema.d.ts +16 -0
  405. package/src/generators/library-secondary-entry-point/schema.json +43 -0
  406. package/src/generators/move/lib/index.d.ts +3 -0
  407. package/src/generators/move/lib/index.js +6 -0
  408. package/src/generators/move/lib/types.d.ts +4 -0
  409. package/src/generators/move/lib/types.js +2 -0
  410. package/src/generators/move/lib/update-module-name.d.ts +11 -0
  411. package/src/generators/move/lib/update-module-name.js +99 -0
  412. package/src/generators/move/lib/update-ng-package.d.ts +3 -0
  413. package/src/generators/move/lib/update-ng-package.js +33 -0
  414. package/src/generators/move/lib/update-secondary-entry-points.d.ts +3 -0
  415. package/src/generators/move/lib/update-secondary-entry-points.js +44 -0
  416. package/src/generators/move/move-impl.d.ts +7 -0
  417. package/src/generators/move/move-impl.js +25 -0
  418. package/src/generators/move/move.d.ts +4 -0
  419. package/src/generators/move/move.js +16 -0
  420. package/src/generators/move/schema.d.ts +11 -0
  421. package/src/generators/move/schema.json +61 -0
  422. package/src/generators/ng-add/files/root/apps/__dot__gitkeep +0 -0
  423. package/src/generators/ng-add/files/root/libs/__dot__gitkeep +0 -0
  424. package/src/generators/ng-add/files/root/tools/generators/__dot__gitkeep +0 -0
  425. package/src/generators/ng-add/files/root/tools/tsconfig.tools.json__tmpl__ +12 -0
  426. package/src/generators/ng-add/files/root-karma/karma.conf.js__tmpl__ +43 -0
  427. package/src/generators/ng-add/migrate-from-angular-cli.d.ts +3 -0
  428. package/src/generators/ng-add/migrate-from-angular-cli.js +62 -0
  429. package/src/generators/ng-add/migrators/builders/angular-devkit-karma.migrator.d.ts +9 -0
  430. package/src/generators/ng-add/migrators/builders/angular-devkit-karma.migrator.js +78 -0
  431. package/src/generators/ng-add/migrators/builders/angular-devkit-ng-packagr.migrator.d.ts +10 -0
  432. package/src/generators/ng-add/migrators/builders/angular-devkit-ng-packagr.migrator.js +95 -0
  433. package/src/generators/ng-add/migrators/builders/angular-eslint-lint.migrator.d.ts +12 -0
  434. package/src/generators/ng-add/migrators/builders/angular-eslint-lint.migrator.js +113 -0
  435. package/src/generators/ng-add/migrators/builders/builder-migrator-class.type.d.ts +6 -0
  436. package/src/generators/ng-add/migrators/builders/builder-migrator-class.type.js +2 -0
  437. package/src/generators/ng-add/migrators/builders/builder.migrator.d.ts +13 -0
  438. package/src/generators/ng-add/migrators/builders/builder.migrator.js +43 -0
  439. package/src/generators/ng-add/migrators/builders/index.d.ts +5 -0
  440. package/src/generators/ng-add/migrators/builders/index.js +8 -0
  441. package/src/generators/ng-add/migrators/index.d.ts +2 -0
  442. package/src/generators/ng-add/migrators/index.js +5 -0
  443. package/src/generators/ng-add/migrators/migrator.d.ts +23 -0
  444. package/src/generators/ng-add/migrators/migrator.js +117 -0
  445. package/src/generators/ng-add/migrators/projects/app.migrator.d.ts +25 -0
  446. package/src/generators/ng-add/migrators/projects/app.migrator.js +342 -0
  447. package/src/generators/ng-add/migrators/projects/e2e.migrator.d.ts +38 -0
  448. package/src/generators/ng-add/migrators/projects/e2e.migrator.js +604 -0
  449. package/src/generators/ng-add/migrators/projects/index.d.ts +4 -0
  450. package/src/generators/ng-add/migrators/projects/index.js +7 -0
  451. package/src/generators/ng-add/migrators/projects/lib.migrator.d.ts +11 -0
  452. package/src/generators/ng-add/migrators/projects/lib.migrator.js +53 -0
  453. package/src/generators/ng-add/migrators/projects/project.migrator.d.ts +25 -0
  454. package/src/generators/ng-add/migrators/projects/project.migrator.js +180 -0
  455. package/src/generators/ng-add/ng-add.d.ts +4 -0
  456. package/src/generators/ng-add/ng-add.js +9 -0
  457. package/src/generators/ng-add/schema.d.ts +16 -0
  458. package/src/generators/ng-add/schema.json +66 -0
  459. package/src/generators/ng-add/utilities/dependencies.d.ts +2 -0
  460. package/src/generators/ng-add/utilities/dependencies.js +28 -0
  461. package/src/generators/ng-add/utilities/format-files-task.d.ts +2 -0
  462. package/src/generators/ng-add/utilities/format-files-task.js +16 -0
  463. package/src/generators/ng-add/utilities/index.d.ts +7 -0
  464. package/src/generators/ng-add/utilities/index.js +10 -0
  465. package/src/generators/ng-add/utilities/logger.d.ts +8 -0
  466. package/src/generators/ng-add/utilities/logger.js +20 -0
  467. package/src/generators/ng-add/utilities/projects.d.ts +4 -0
  468. package/src/generators/ng-add/utilities/projects.js +35 -0
  469. package/src/generators/ng-add/utilities/types.d.ts +31 -0
  470. package/src/generators/ng-add/utilities/types.js +2 -0
  471. package/src/generators/ng-add/utilities/validation-logging.d.ts +3 -0
  472. package/src/generators/ng-add/utilities/validation-logging.js +38 -0
  473. package/src/generators/ng-add/utilities/workspace.d.ts +17 -0
  474. package/src/generators/ng-add/utilities/workspace.js +292 -0
  475. package/src/generators/ngrx/files/__directory__/__fileName__.actions.ts__tmpl__ +16 -0
  476. package/src/generators/ngrx/files/__directory__/__fileName__.effects.spec.ts__tmpl__ +37 -0
  477. package/src/generators/ngrx/files/__directory__/__fileName__.effects.ts__tmpl__ +22 -0
  478. package/src/generators/ngrx/files/__directory__/__fileName__.facade.spec.ts__tmpl__ +99 -0
  479. package/src/generators/ngrx/files/__directory__/__fileName__.facade.ts__tmpl__ +27 -0
  480. package/src/generators/ngrx/files/__directory__/__fileName__.models.ts__tmpl__ +7 -0
  481. package/src/generators/ngrx/files/__directory__/__fileName__.reducer.spec.ts__tmpl__ +37 -0
  482. package/src/generators/ngrx/files/__directory__/__fileName__.reducer.ts__tmpl__ +41 -0
  483. package/src/generators/ngrx/files/__directory__/__fileName__.selectors.spec.ts__tmpl__ +58 -0
  484. package/src/generators/ngrx/files/__directory__/__fileName__.selectors.ts__tmpl__ +38 -0
  485. package/src/generators/ngrx/lib/add-exports-barrel.d.ts +6 -0
  486. package/src/generators/ngrx/lib/add-exports-barrel.js +45 -0
  487. package/src/generators/ngrx/lib/add-imports-to-module.d.ts +3 -0
  488. package/src/generators/ngrx/lib/add-imports-to-module.js +182 -0
  489. package/src/generators/ngrx/lib/add-ngrx-to-package-json.d.ts +3 -0
  490. package/src/generators/ngrx/lib/add-ngrx-to-package-json.js +25 -0
  491. package/src/generators/ngrx/lib/generate-files.d.ts +6 -0
  492. package/src/generators/ngrx/lib/generate-files.js +23 -0
  493. package/src/generators/ngrx/lib/index.d.ts +6 -0
  494. package/src/generators/ngrx/lib/index.js +15 -0
  495. package/src/generators/ngrx/lib/normalize-options.d.ts +7 -0
  496. package/src/generators/ngrx/lib/normalize-options.js +28 -0
  497. package/src/generators/ngrx/lib/validate-options.d.ts +3 -0
  498. package/src/generators/ngrx/lib/validate-options.js +15 -0
  499. package/src/generators/ngrx/ngrx.d.ts +4 -0
  500. package/src/generators/ngrx/ngrx.js +26 -0
  501. package/src/generators/ngrx/schema.d.ts +14 -0
  502. package/src/generators/ngrx/schema.json +102 -0
  503. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.actions.ts__tmpl__ +16 -0
  504. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.effects.spec.ts__tmpl__ +37 -0
  505. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.effects.ts__tmpl__ +22 -0
  506. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.facade.spec.ts__tmpl__ +99 -0
  507. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.facade.ts__tmpl__ +27 -0
  508. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.models.ts__tmpl__ +7 -0
  509. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.reducer.spec.ts__tmpl__ +37 -0
  510. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.reducer.ts__tmpl__ +41 -0
  511. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.selectors.spec.ts__tmpl__ +58 -0
  512. package/src/generators/ngrx-feature-store/files/__directory__/__fileName__.selectors.ts__tmpl__ +38 -0
  513. package/src/generators/ngrx-feature-store/lib/add-exports-barrel.d.ts +3 -0
  514. package/src/generators/ngrx-feature-store/lib/add-exports-barrel.js +41 -0
  515. package/src/generators/ngrx-feature-store/lib/add-imports.d.ts +3 -0
  516. package/src/generators/ngrx-feature-store/lib/add-imports.js +102 -0
  517. package/src/generators/ngrx-feature-store/lib/add-ngrx-to-package-json.d.ts +3 -0
  518. package/src/generators/ngrx-feature-store/lib/add-ngrx-to-package-json.js +25 -0
  519. package/src/generators/ngrx-feature-store/lib/generate-files.d.ts +3 -0
  520. package/src/generators/ngrx-feature-store/lib/generate-files.js +24 -0
  521. package/src/generators/ngrx-feature-store/lib/index.d.ts +6 -0
  522. package/src/generators/ngrx-feature-store/lib/index.js +9 -0
  523. package/src/generators/ngrx-feature-store/lib/normalize-options.d.ts +8 -0
  524. package/src/generators/ngrx-feature-store/lib/normalize-options.js +38 -0
  525. package/src/generators/ngrx-feature-store/lib/validate-options.d.ts +3 -0
  526. package/src/generators/ngrx-feature-store/lib/validate-options.js +12 -0
  527. package/src/generators/ngrx-feature-store/ngrx-feature-store.d.ts +5 -0
  528. package/src/generators/ngrx-feature-store/ngrx-feature-store.js +26 -0
  529. package/src/generators/ngrx-feature-store/schema.d.ts +12 -0
  530. package/src/generators/ngrx-feature-store/schema.json +72 -0
  531. package/src/generators/ngrx-root-store/lib/add-imports.d.ts +3 -0
  532. package/src/generators/ngrx-root-store/lib/add-imports.js +101 -0
  533. package/src/generators/ngrx-root-store/lib/add-ngrx-to-package-json.d.ts +3 -0
  534. package/src/generators/ngrx-root-store/lib/add-ngrx-to-package-json.js +27 -0
  535. package/src/generators/ngrx-root-store/lib/index.d.ts +4 -0
  536. package/src/generators/ngrx-root-store/lib/index.js +7 -0
  537. package/src/generators/ngrx-root-store/lib/normalize-options.d.ts +7 -0
  538. package/src/generators/ngrx-root-store/lib/normalize-options.js +40 -0
  539. package/src/generators/ngrx-root-store/lib/validate-options.d.ts +3 -0
  540. package/src/generators/ngrx-root-store/lib/validate-options.js +17 -0
  541. package/src/generators/ngrx-root-store/ngrx-root-store.d.ts +5 -0
  542. package/src/generators/ngrx-root-store/ngrx-root-store.js +36 -0
  543. package/src/generators/ngrx-root-store/schema.d.ts +11 -0
  544. package/src/generators/ngrx-root-store/schema.json +71 -0
  545. package/src/generators/pipe/files/__fileName__.spec.ts__tpl__ +8 -0
  546. package/src/generators/pipe/files/__fileName__.ts__tpl__ +11 -0
  547. package/src/generators/pipe/lib/index.d.ts +1 -0
  548. package/src/generators/pipe/lib/index.js +4 -0
  549. package/src/generators/pipe/lib/normalize-options.d.ts +3 -0
  550. package/src/generators/pipe/lib/normalize-options.js +31 -0
  551. package/src/generators/pipe/pipe.d.ts +4 -0
  552. package/src/generators/pipe/pipe.js +30 -0
  553. package/src/generators/pipe/schema.d.ts +33 -0
  554. package/src/generators/pipe/schema.json +77 -0
  555. package/src/generators/remote/files/base/webpack.server.config.js__tmpl__ +3 -0
  556. package/src/generators/remote/files/base-ts/webpack.server.config.ts__tmpl__ +4 -0
  557. package/src/generators/remote/files/common/pre-v17/src/main.server.ts__tmpl__ +72 -0
  558. package/src/generators/remote/files/common/v17+/src/main.server.ts__tmpl__ +73 -0
  559. package/src/generators/remote/files/standalone/src/bootstrap.server.ts__tmpl__ +7 -0
  560. package/src/generators/remote/lib/find-next-available-port.d.ts +2 -0
  561. package/src/generators/remote/lib/find-next-available-port.js +17 -0
  562. package/src/generators/remote/lib/index.d.ts +2 -0
  563. package/src/generators/remote/lib/index.js +5 -0
  564. package/src/generators/remote/lib/update-ssr-setup.d.ts +7 -0
  565. package/src/generators/remote/lib/update-ssr-setup.js +59 -0
  566. package/src/generators/remote/remote.d.ts +5 -0
  567. package/src/generators/remote/remote.js +79 -0
  568. package/src/generators/remote/schema.d.ts +32 -0
  569. package/src/generators/remote/schema.json +178 -0
  570. package/src/generators/scam/lib/convert-component-to-scam.d.ts +3 -0
  571. package/src/generators/scam/lib/convert-component-to-scam.js +44 -0
  572. package/src/generators/scam/lib/index.d.ts +2 -0
  573. package/src/generators/scam/lib/index.js +5 -0
  574. package/src/generators/scam/lib/normalize-options.d.ts +3 -0
  575. package/src/generators/scam/lib/normalize-options.js +33 -0
  576. package/src/generators/scam/scam.d.ts +4 -0
  577. package/src/generators/scam/scam.js +26 -0
  578. package/src/generators/scam/schema.d.ts +43 -0
  579. package/src/generators/scam/schema.json +142 -0
  580. package/src/generators/scam-directive/lib/convert-directive-to-scam.d.ts +3 -0
  581. package/src/generators/scam-directive/lib/convert-directive-to-scam.js +44 -0
  582. package/src/generators/scam-directive/lib/index.d.ts +2 -0
  583. package/src/generators/scam-directive/lib/index.js +5 -0
  584. package/src/generators/scam-directive/lib/normalize-options.d.ts +3 -0
  585. package/src/generators/scam-directive/lib/normalize-options.js +32 -0
  586. package/src/generators/scam-directive/scam-directive.d.ts +4 -0
  587. package/src/generators/scam-directive/scam-directive.js +26 -0
  588. package/src/generators/scam-directive/schema.d.ts +35 -0
  589. package/src/generators/scam-directive/schema.json +96 -0
  590. package/src/generators/scam-pipe/lib/convert-pipe-to-scam.d.ts +3 -0
  591. package/src/generators/scam-pipe/lib/convert-pipe-to-scam.js +44 -0
  592. package/src/generators/scam-pipe/lib/index.d.ts +2 -0
  593. package/src/generators/scam-pipe/lib/index.js +5 -0
  594. package/src/generators/scam-pipe/lib/normalize-options.d.ts +3 -0
  595. package/src/generators/scam-pipe/lib/normalize-options.js +32 -0
  596. package/src/generators/scam-pipe/scam-pipe.d.ts +4 -0
  597. package/src/generators/scam-pipe/scam-pipe.js +26 -0
  598. package/src/generators/scam-pipe/schema.d.ts +33 -0
  599. package/src/generators/scam-pipe/schema.json +77 -0
  600. package/src/generators/scam-to-standalone/lib/convert-scam-to-standalone.d.ts +3 -0
  601. package/src/generators/scam-to-standalone/lib/convert-scam-to-standalone.js +33 -0
  602. package/src/generators/scam-to-standalone/lib/get-component-data-from-ast.d.ts +6 -0
  603. package/src/generators/scam-to-standalone/lib/get-component-data-from-ast.js +18 -0
  604. package/src/generators/scam-to-standalone/lib/get-module-metadata-from-ast.d.ts +9 -0
  605. package/src/generators/scam-to-standalone/lib/get-module-metadata-from-ast.js +64 -0
  606. package/src/generators/scam-to-standalone/lib/get-target-project.d.ts +2 -0
  607. package/src/generators/scam-to-standalone/lib/get-target-project.js +14 -0
  608. package/src/generators/scam-to-standalone/lib/index.d.ts +8 -0
  609. package/src/generators/scam-to-standalone/lib/index.js +11 -0
  610. package/src/generators/scam-to-standalone/lib/replace-module-usages-with-component.d.ts +2 -0
  611. package/src/generators/scam-to-standalone/lib/replace-module-usages-with-component.js +19 -0
  612. package/src/generators/scam-to-standalone/lib/selector-exists-in-ast.d.ts +2 -0
  613. package/src/generators/scam-to-standalone/lib/selector-exists-in-ast.js +8 -0
  614. package/src/generators/scam-to-standalone/lib/verify-is-inline-scam.d.ts +2 -0
  615. package/src/generators/scam-to-standalone/lib/verify-is-inline-scam.js +11 -0
  616. package/src/generators/scam-to-standalone/lib/verify-module-is-scam.d.ts +1 -0
  617. package/src/generators/scam-to-standalone/lib/verify-module-is-scam.js +12 -0
  618. package/src/generators/scam-to-standalone/scam-to-standalone.d.ts +4 -0
  619. package/src/generators/scam-to-standalone/scam-to-standalone.js +27 -0
  620. package/src/generators/scam-to-standalone/schema.d.ts +5 -0
  621. package/src/generators/scam-to-standalone/schema.json +32 -0
  622. package/src/generators/setup-mf/files/entry-module-files/entry.component.ts__tmpl__ +9 -0
  623. package/src/generators/setup-mf/files/entry-module-files/entry.module.ts__tmpl__ +18 -0
  624. package/src/generators/setup-mf/files/entry-module-files/entry.routes.ts__tmpl__ +4 -0
  625. package/src/generators/setup-mf/files/host-files/app.component.spec.ts__tmpl__ +44 -0
  626. package/src/generators/setup-mf/files/standalone-entry-component-files/entry.component.ts__tmpl__ +13 -0
  627. package/src/generators/setup-mf/files/standalone-entry-component-files/entry.routes.ts__tmpl__ +4 -0
  628. package/src/generators/setup-mf/files/ts-webpack/module-federation.config.ts__tmpl__ +24 -0
  629. package/src/generators/setup-mf/files/ts-webpack/tsconfig.lint.json__tmpl__ +12 -0
  630. package/src/generators/setup-mf/files/ts-webpack/webpack.config.ts__tmpl__ +4 -0
  631. package/src/generators/setup-mf/files/ts-webpack/webpack.prod.config.ts__tmpl__ +16 -0
  632. package/src/generators/setup-mf/files/webpack/module-federation.config.js__tmpl__ +20 -0
  633. package/src/generators/setup-mf/files/webpack/webpack.config.js__tmpl__ +3 -0
  634. package/src/generators/setup-mf/files/webpack/webpack.prod.config.js__tmpl__ +15 -0
  635. package/src/generators/setup-mf/lib/add-cypress-workaround.d.ts +3 -0
  636. package/src/generators/setup-mf/lib/add-cypress-workaround.js +52 -0
  637. package/src/generators/setup-mf/lib/add-remote-entry.d.ts +3 -0
  638. package/src/generators/setup-mf/lib/add-remote-entry.js +22 -0
  639. package/src/generators/setup-mf/lib/add-remote-to-host.d.ts +4 -0
  640. package/src/generators/setup-mf/lib/add-remote-to-host.js +108 -0
  641. package/src/generators/setup-mf/lib/change-build-target.d.ts +3 -0
  642. package/src/generators/setup-mf/lib/change-build-target.js +23 -0
  643. package/src/generators/setup-mf/lib/fix-bootstrap.d.ts +3 -0
  644. package/src/generators/setup-mf/lib/fix-bootstrap.js +33 -0
  645. package/src/generators/setup-mf/lib/generate-config.d.ts +6 -0
  646. package/src/generators/setup-mf/lib/generate-config.js +30 -0
  647. package/src/generators/setup-mf/lib/get-remotes-with-ports.d.ts +6 -0
  648. package/src/generators/setup-mf/lib/get-remotes-with-ports.js +21 -0
  649. package/src/generators/setup-mf/lib/index.d.ts +14 -0
  650. package/src/generators/setup-mf/lib/index.js +17 -0
  651. package/src/generators/setup-mf/lib/normalize-options.d.ts +3 -0
  652. package/src/generators/setup-mf/lib/normalize-options.js +14 -0
  653. package/src/generators/setup-mf/lib/remove-dead-code-from-remote.d.ts +3 -0
  654. package/src/generators/setup-mf/lib/remove-dead-code-from-remote.js +56 -0
  655. package/src/generators/setup-mf/lib/setup-host-if-dynamic.d.ts +3 -0
  656. package/src/generators/setup-mf/lib/setup-host-if-dynamic.js +21 -0
  657. package/src/generators/setup-mf/lib/setup-serve-target.d.ts +3 -0
  658. package/src/generators/setup-mf/lib/setup-serve-target.js +39 -0
  659. package/src/generators/setup-mf/lib/setup-tspath-for-remote.d.ts +3 -0
  660. package/src/generators/setup-mf/lib/setup-tspath-for-remote.js +16 -0
  661. package/src/generators/setup-mf/lib/update-host-app-routes.d.ts +3 -0
  662. package/src/generators/setup-mf/lib/update-host-app-routes.js +41 -0
  663. package/src/generators/setup-mf/lib/update-tsconfig.d.ts +3 -0
  664. package/src/generators/setup-mf/lib/update-tsconfig.js +19 -0
  665. package/src/generators/setup-mf/schema.d.ts +24 -0
  666. package/src/generators/setup-mf/schema.json +91 -0
  667. package/src/generators/setup-mf/setup-mf.d.ts +4 -0
  668. package/src/generators/setup-mf/setup-mf.js +39 -0
  669. package/src/generators/setup-ssr/files/ngmodule/base/src/__main__ +1 -0
  670. package/src/generators/setup-ssr/files/ngmodule/base/src/app/__rootModuleFileName__ +14 -0
  671. package/src/generators/setup-ssr/files/ngmodule/pre-v15-2/src/main.ts__tpl__ +14 -0
  672. package/src/generators/setup-ssr/files/root/tsconfig.server.json__tpl__ +15 -0
  673. package/src/generators/setup-ssr/files/server/application-builder/__serverFileName__ +56 -0
  674. package/src/generators/setup-ssr/files/server/server-builder/pre-v17/__serverFileName__ +59 -0
  675. package/src/generators/setup-ssr/files/server/server-builder/v17+/__serverFileName__ +69 -0
  676. package/src/generators/setup-ssr/files/standalone/src/__main__ +7 -0
  677. package/src/generators/setup-ssr/files/standalone/src/app/app.config.server.ts__tpl__ +11 -0
  678. package/src/generators/setup-ssr/lib/add-dependencies.d.ts +2 -0
  679. package/src/generators/setup-ssr/lib/add-dependencies.js +36 -0
  680. package/src/generators/setup-ssr/lib/add-hydration.d.ts +3 -0
  681. package/src/generators/setup-ssr/lib/add-hydration.js +36 -0
  682. package/src/generators/setup-ssr/lib/add-server-file.d.ts +3 -0
  683. package/src/generators/setup-ssr/lib/add-server-file.js +31 -0
  684. package/src/generators/setup-ssr/lib/constants.d.ts +3 -0
  685. package/src/generators/setup-ssr/lib/constants.js +6 -0
  686. package/src/generators/setup-ssr/lib/generate-files.d.ts +3 -0
  687. package/src/generators/setup-ssr/lib/generate-files.js +26 -0
  688. package/src/generators/setup-ssr/lib/generate-server-ts-config.d.ts +4 -0
  689. package/src/generators/setup-ssr/lib/generate-server-ts-config.js +29 -0
  690. package/src/generators/setup-ssr/lib/index.d.ts +10 -0
  691. package/src/generators/setup-ssr/lib/index.js +13 -0
  692. package/src/generators/setup-ssr/lib/normalize-options.d.ts +14 -0
  693. package/src/generators/setup-ssr/lib/normalize-options.js +26 -0
  694. package/src/generators/setup-ssr/lib/set-router-initial-navigation.d.ts +3 -0
  695. package/src/generators/setup-ssr/lib/set-router-initial-navigation.js +93 -0
  696. package/src/generators/setup-ssr/lib/update-app-module.d.ts +3 -0
  697. package/src/generators/setup-ssr/lib/update-app-module.js +27 -0
  698. package/src/generators/setup-ssr/lib/update-project-config.d.ts +4 -0
  699. package/src/generators/setup-ssr/lib/update-project-config.js +127 -0
  700. package/src/generators/setup-ssr/lib/validate-options.d.ts +3 -0
  701. package/src/generators/setup-ssr/lib/validate-options.js +36 -0
  702. package/src/generators/setup-ssr/schema.d.ts +12 -0
  703. package/src/generators/setup-ssr/schema.json +68 -0
  704. package/src/generators/setup-ssr/setup-ssr.d.ts +4 -0
  705. package/src/generators/setup-ssr/setup-ssr.js +42 -0
  706. package/src/generators/setup-tailwind/files/v2/tailwind.config.js__tmpl__ +18 -0
  707. package/src/generators/setup-tailwind/files/v3/tailwind.config.js__tmpl__ +14 -0
  708. package/src/generators/setup-tailwind/lib/add-tailwind-config-path-to-project.d.ts +3 -0
  709. package/src/generators/setup-tailwind/lib/add-tailwind-config-path-to-project.js +35 -0
  710. package/src/generators/setup-tailwind/lib/add-tailwind-config.d.ts +3 -0
  711. package/src/generators/setup-tailwind/lib/add-tailwind-config.js +17 -0
  712. package/src/generators/setup-tailwind/lib/add-tailwind-required-packages.d.ts +2 -0
  713. package/src/generators/setup-tailwind/lib/add-tailwind-required-packages.js +14 -0
  714. package/src/generators/setup-tailwind/lib/detect-tailwind-installed-version.d.ts +2 -0
  715. package/src/generators/setup-tailwind/lib/detect-tailwind-installed-version.js +19 -0
  716. package/src/generators/setup-tailwind/lib/index.d.ts +6 -0
  717. package/src/generators/setup-tailwind/lib/index.js +9 -0
  718. package/src/generators/setup-tailwind/lib/normalize-options.d.ts +2 -0
  719. package/src/generators/setup-tailwind/lib/normalize-options.js +10 -0
  720. package/src/generators/setup-tailwind/lib/update-application-styles.d.ts +3 -0
  721. package/src/generators/setup-tailwind/lib/update-application-styles.js +52 -0
  722. package/src/generators/setup-tailwind/schema.d.ts +11 -0
  723. package/src/generators/setup-tailwind/schema.json +42 -0
  724. package/src/generators/setup-tailwind/setup-tailwind.d.ts +4 -0
  725. package/src/generators/setup-tailwind/setup-tailwind.js +29 -0
  726. package/src/generators/stories/lib/get-e2e-project.d.ts +2 -0
  727. package/src/generators/stories/lib/get-e2e-project.js +15 -0
  728. package/src/generators/stories/schema.d.ts +8 -0
  729. package/src/generators/stories/schema.json +64 -0
  730. package/src/generators/stories/stories.d.ts +4 -0
  731. package/src/generators/stories/stories.js +67 -0
  732. package/src/generators/storybook-configuration/lib/assert-compatible-storybook-version.d.ts +1 -0
  733. package/src/generators/storybook-configuration/lib/assert-compatible-storybook-version.js +15 -0
  734. package/src/generators/storybook-configuration/lib/generate-stories.d.ts +3 -0
  735. package/src/generators/storybook-configuration/lib/generate-stories.js +21 -0
  736. package/src/generators/storybook-configuration/lib/generate-storybook-configuration.d.ts +3 -0
  737. package/src/generators/storybook-configuration/lib/generate-storybook-configuration.js +22 -0
  738. package/src/generators/storybook-configuration/lib/validate-options.d.ts +2 -0
  739. package/src/generators/storybook-configuration/lib/validate-options.js +9 -0
  740. package/src/generators/storybook-configuration/schema.d.ts +15 -0
  741. package/src/generators/storybook-configuration/schema.json +98 -0
  742. package/src/generators/storybook-configuration/storybook-configuration.d.ts +4 -0
  743. package/src/generators/storybook-configuration/storybook-configuration.js +36 -0
  744. package/src/generators/utils/add-jest.d.ts +8 -0
  745. package/src/generators/utils/add-jest.js +36 -0
  746. package/src/generators/utils/add-mf-env-to-inputs.d.ts +2 -0
  747. package/src/generators/utils/add-mf-env-to-inputs.js +24 -0
  748. package/src/generators/utils/dependencies.d.ts +2 -0
  749. package/src/generators/utils/dependencies.js +14 -0
  750. package/src/generators/utils/ensure-angular-dependencies.d.ts +2 -0
  751. package/src/generators/utils/ensure-angular-dependencies.js +35 -0
  752. package/src/generators/utils/entry-point.d.ts +2 -0
  753. package/src/generators/utils/entry-point.js +20 -0
  754. package/src/generators/utils/export-scam.d.ts +10 -0
  755. package/src/generators/utils/export-scam.js +37 -0
  756. package/src/generators/utils/find-module.d.ts +4 -0
  757. package/src/generators/utils/find-module.js +64 -0
  758. package/src/generators/utils/index.d.ts +2 -0
  759. package/src/generators/utils/index.js +5 -0
  760. package/src/generators/utils/insert-ngmodule-import.d.ts +4 -0
  761. package/src/generators/utils/insert-ngmodule-import.js +139 -0
  762. package/src/generators/utils/path.d.ts +1 -0
  763. package/src/generators/utils/path.js +10 -0
  764. package/src/generators/utils/project.d.ts +2 -0
  765. package/src/generators/utils/project.js +8 -0
  766. package/src/generators/utils/selector.d.ts +3 -0
  767. package/src/generators/utils/selector.js +21 -0
  768. package/src/generators/utils/storybook-ast/component-info.d.ts +11 -0
  769. package/src/generators/utils/storybook-ast/component-info.js +167 -0
  770. package/src/generators/utils/storybook-ast/entry-point.d.ts +7 -0
  771. package/src/generators/utils/storybook-ast/entry-point.js +63 -0
  772. package/src/generators/utils/storybook-ast/module-info.d.ts +5 -0
  773. package/src/generators/utils/storybook-ast/module-info.js +220 -0
  774. package/src/generators/utils/storybook-ast/storybook-inputs.d.ts +12 -0
  775. package/src/generators/utils/storybook-ast/storybook-inputs.js +78 -0
  776. package/src/generators/utils/storybook-ast/tree-utilities.d.ts +2 -0
  777. package/src/generators/utils/storybook-ast/tree-utilities.js +31 -0
  778. package/src/generators/utils/testing.d.ts +10 -0
  779. package/src/generators/utils/testing.js +274 -0
  780. package/src/generators/utils/types.d.ts +1 -0
  781. package/src/generators/utils/types.js +2 -0
  782. package/src/generators/utils/update-app-editor-tsconfig-excluded-files.d.ts +2 -0
  783. package/src/generators/utils/update-app-editor-tsconfig-excluded-files.js +23 -0
  784. package/src/generators/utils/update-project-root-tsconfig.d.ts +3 -0
  785. package/src/generators/utils/update-project-root-tsconfig.js +26 -0
  786. package/src/generators/utils/validations.d.ts +2 -0
  787. package/src/generators/utils/validations.js +11 -0
  788. package/src/generators/utils/version-utils.d.ts +15 -0
  789. package/src/generators/utils/version-utils.js +66 -0
  790. package/src/generators/web-worker/files/config/tsconfig.worker.json__tpl__ +14 -0
  791. package/src/generators/web-worker/files/worker/__name__.worker.ts__tpl__ +6 -0
  792. package/src/generators/web-worker/lib/add-snippet.d.ts +2 -0
  793. package/src/generators/web-worker/lib/add-snippet.js +33 -0
  794. package/src/generators/web-worker/lib/index.d.ts +2 -0
  795. package/src/generators/web-worker/lib/index.js +5 -0
  796. package/src/generators/web-worker/lib/normalize-options.d.ts +3 -0
  797. package/src/generators/web-worker/lib/normalize-options.js +25 -0
  798. package/src/generators/web-worker/schema.d.ts +7 -0
  799. package/src/generators/web-worker/schema.json +48 -0
  800. package/src/generators/web-worker/web-worker.d.ts +4 -0
  801. package/src/generators/web-worker/web-worker.js +34 -0
  802. package/src/migrations/update-14-2-0/remove-show-circular-dependencies-option.d.ts +2 -0
  803. package/src/migrations/update-14-2-0/remove-show-circular-dependencies-option.js +23 -0
  804. package/src/migrations/update-14-2-0/update-angular-cli.d.ts +2 -0
  805. package/src/migrations/update-14-2-0/update-angular-cli.js +22 -0
  806. package/src/migrations/update-14-2-0/update-libraries-secondary-entrypoints.d.ts +2 -0
  807. package/src/migrations/update-14-2-0/update-libraries-secondary-entrypoints.js +34 -0
  808. package/src/migrations/update-14-2-0/update-ngcc-target.d.ts +2 -0
  809. package/src/migrations/update-14-2-0/update-ngcc-target.js +17 -0
  810. package/src/migrations/update-14-2-0/update-router-initial-navigation.d.ts +2 -0
  811. package/src/migrations/update-14-2-0/update-router-initial-navigation.js +70 -0
  812. package/src/migrations/update-14-2-0/update-tsconfig-target.d.ts +2 -0
  813. package/src/migrations/update-14-2-0/update-tsconfig-target.js +155 -0
  814. package/src/migrations/update-14-5-0/migrate-mfe-to-mf.d.ts +5 -0
  815. package/src/migrations/update-14-5-0/migrate-mfe-to-mf.js +91 -0
  816. package/src/migrations/update-14-5-2/update-angular-cli.d.ts +2 -0
  817. package/src/migrations/update-14-5-2/update-angular-cli.js +22 -0
  818. package/src/migrations/update-14-6-0/update-angular-cli.d.ts +2 -0
  819. package/src/migrations/update-14-6-0/update-angular-cli.js +22 -0
  820. package/src/migrations/update-14-8-0/rename-webpack-server.d.ts +2 -0
  821. package/src/migrations/update-14-8-0/rename-webpack-server.js +21 -0
  822. package/src/migrations/update-15-0-0/add-karma-inputs.d.ts +2 -0
  823. package/src/migrations/update-15-0-0/add-karma-inputs.js +41 -0
  824. package/src/migrations/update-15-0-0/switch-to-jasmine-marbles.d.ts +2 -0
  825. package/src/migrations/update-15-0-0/switch-to-jasmine-marbles.js +102 -0
  826. package/src/migrations/update-15-2-0/remove-browserlist-config.d.ts +3 -0
  827. package/src/migrations/update-15-2-0/remove-browserlist-config.js +58 -0
  828. package/src/migrations/update-15-2-0/remove-platform-server-exports.d.ts +2 -0
  829. package/src/migrations/update-15-2-0/remove-platform-server-exports.js +61 -0
  830. package/src/migrations/update-15-2-0/update-angular-cli.d.ts +2 -0
  831. package/src/migrations/update-15-2-0/update-angular-cli.js +22 -0
  832. package/src/migrations/update-15-2-0/update-karma-main-file.d.ts +2 -0
  833. package/src/migrations/update-15-2-0/update-karma-main-file.js +71 -0
  834. package/src/migrations/update-15-2-0/update-typescript-target.d.ts +2 -0
  835. package/src/migrations/update-15-2-0/update-typescript-target.js +52 -0
  836. package/src/migrations/update-15-2-0/update-workspace-config.d.ts +2 -0
  837. package/src/migrations/update-15-2-0/update-workspace-config.js +24 -0
  838. package/src/migrations/update-15-5-0/update-angular-cli.d.ts +2 -0
  839. package/src/migrations/update-15-5-0/update-angular-cli.js +22 -0
  840. package/src/migrations/update-15-7-0/install-required-packages.d.ts +2 -0
  841. package/src/migrations/update-15-7-0/install-required-packages.js +36 -0
  842. package/src/migrations/update-15-8-0/update-angular-cli.d.ts +2 -0
  843. package/src/migrations/update-15-8-0/update-angular-cli.js +22 -0
  844. package/src/migrations/update-15-9-0/update-file-server-executor.d.ts +2 -0
  845. package/src/migrations/update-15-9-0/update-file-server-executor.js +42 -0
  846. package/src/migrations/update-15-9-0/update-testing-tsconfig.d.ts +3 -0
  847. package/src/migrations/update-15-9-0/update-testing-tsconfig.js +33 -0
  848. package/src/migrations/update-16-0-0/remove-karma-defaults.d.ts +2 -0
  849. package/src/migrations/update-16-0-0/remove-karma-defaults.js +52 -0
  850. package/src/migrations/update-16-0-0/remove-library-generator-simple-module-name-option.d.ts +2 -0
  851. package/src/migrations/update-16-0-0/remove-library-generator-simple-module-name-option.js +40 -0
  852. package/src/migrations/update-16-0-0/remove-protractor-defaults.d.ts +2 -0
  853. package/src/migrations/update-16-0-0/remove-protractor-defaults.js +52 -0
  854. package/src/migrations/update-16-0-0-add-nx-packages/update-16-0-0-add-nx-packages.d.ts +2 -0
  855. package/src/migrations/update-16-0-0-add-nx-packages/update-16-0-0-add-nx-packages.js +9 -0
  856. package/src/migrations/update-16-1-0/extract-standalone-config-from-bootstrap.d.ts +2 -0
  857. package/src/migrations/update-16-1-0/extract-standalone-config-from-bootstrap.js +127 -0
  858. package/src/migrations/update-16-1-0/remove-ngcc-invocation.d.ts +2 -0
  859. package/src/migrations/update-16-1-0/remove-ngcc-invocation.js +22 -0
  860. package/src/migrations/update-16-1-0/remove-render-module-platform-server-exports.d.ts +2 -0
  861. package/src/migrations/update-16-1-0/remove-render-module-platform-server-exports.js +61 -0
  862. package/src/migrations/update-16-1-0/update-angular-cli.d.ts +3 -0
  863. package/src/migrations/update-16-1-0/update-angular-cli.js +23 -0
  864. package/src/migrations/update-16-1-0/update-server-executor-config.d.ts +2 -0
  865. package/src/migrations/update-16-1-0/update-server-executor-config.js +26 -0
  866. package/src/migrations/update-16-2-0/switch-data-persistence-operators-imports-to-ngrx-router-store.d.ts +2 -0
  867. package/src/migrations/update-16-2-0/switch-data-persistence-operators-imports-to-ngrx-router-store.js +122 -0
  868. package/src/migrations/update-16-4-0/rename-angular-eslint-accesibility-rules.d.ts +2 -0
  869. package/src/migrations/update-16-4-0/rename-angular-eslint-accesibility-rules.js +34 -0
  870. package/src/migrations/update-16-4-0/update-angular-cli.d.ts +3 -0
  871. package/src/migrations/update-16-4-0/update-angular-cli.js +23 -0
  872. package/src/migrations/update-16-6-0/explicitly-set-projects-to-update-buildable-deps.d.ts +2 -0
  873. package/src/migrations/update-16-6-0/explicitly-set-projects-to-update-buildable-deps.js +34 -0
  874. package/src/migrations/update-16-7-0/update-angular-cli.d.ts +3 -0
  875. package/src/migrations/update-16-7-0/update-angular-cli.js +23 -0
  876. package/src/migrations/update-17-1-0/browser-target-to-build-target.d.ts +3 -0
  877. package/src/migrations/update-17-1-0/browser-target-to-build-target.js +50 -0
  878. package/src/migrations/update-17-1-0/replace-nguniversal-builders.d.ts +2 -0
  879. package/src/migrations/update-17-1-0/replace-nguniversal-builders.js +75 -0
  880. package/src/migrations/update-17-1-0/replace-nguniversal-engines.d.ts +2 -0
  881. package/src/migrations/update-17-1-0/replace-nguniversal-engines.js +183 -0
  882. package/src/migrations/update-17-1-0/update-angular-cli.d.ts +3 -0
  883. package/src/migrations/update-17-1-0/update-angular-cli.js +23 -0
  884. package/src/migrations/update-17-1-0/update-zone-js-deep-import.d.ts +2 -0
  885. package/src/migrations/update-17-1-0/update-zone-js-deep-import.js +37 -0
  886. package/src/migrations/update-17-2-0/rename-webpack-dev-server.d.ts +2 -0
  887. package/src/migrations/update-17-2-0/rename-webpack-dev-server.js +40 -0
  888. package/src/migrations/update-17-3-0/add-autoprefixer-dependency.d.ts +2 -0
  889. package/src/migrations/update-17-3-0/add-autoprefixer-dependency.js +26 -0
  890. package/src/migrations/update-17-3-0/add-browser-sync-dependency.d.ts +2 -0
  891. package/src/migrations/update-17-3-0/add-browser-sync-dependency.js +26 -0
  892. package/src/migrations/update-17-3-0/update-angular-cli.d.ts +3 -0
  893. package/src/migrations/update-17-3-0/update-angular-cli.js +23 -0
  894. package/src/migrations/update-18-0-0/add-mf-env-var-to-target-defaults.d.ts +2 -0
  895. package/src/migrations/update-18-0-0/add-mf-env-var-to-target-defaults.js +26 -0
  896. package/src/migrations/update-18-1-0/update-angular-cli.d.ts +3 -0
  897. package/src/migrations/update-18-1-0/update-angular-cli.js +23 -0
  898. package/src/migrations/utils/projects.d.ts +5 -0
  899. package/src/migrations/utils/projects.js +15 -0
  900. package/src/runtime/nx/data-persistence.d.ts +271 -0
  901. package/src/runtime/nx/data-persistence.js +350 -0
  902. package/src/utils/backward-compatible-versions.d.ts +8 -0
  903. package/src/utils/backward-compatible-versions.js +59 -0
  904. package/src/utils/cli-config-utils.d.ts +1 -0
  905. package/src/utils/cli-config-utils.js +45 -0
  906. package/src/utils/file-change-recorder.d.ts +17 -0
  907. package/src/utils/file-change-recorder.js +39 -0
  908. package/src/utils/get-mf-projects.d.ts +4 -0
  909. package/src/utils/get-mf-projects.js +34 -0
  910. package/src/utils/mf/utils.d.ts +15 -0
  911. package/src/utils/mf/utils.js +100 -0
  912. package/src/utils/mf/with-module-federation-ssr.d.ts +2 -0
  913. package/src/utils/mf/with-module-federation-ssr.js +46 -0
  914. package/src/utils/mf/with-module-federation.d.ts +2 -0
  915. package/src/utils/mf/with-module-federation.js +48 -0
  916. package/src/utils/nx-devkit/ast-utils.d.ts +94 -0
  917. package/src/utils/nx-devkit/ast-utils.js +596 -0
  918. package/src/utils/nx-devkit/route-utils.d.ts +19 -0
  919. package/src/utils/nx-devkit/route-utils.js +102 -0
  920. package/src/utils/nx-devkit/testing.d.ts +14 -0
  921. package/src/utils/nx-devkit/testing.js +84 -0
  922. package/src/utils/public-api.d.ts +2 -0
  923. package/src/utils/public-api.js +16 -0
  924. package/src/utils/targets.d.ts +2 -0
  925. package/src/utils/targets.js +17 -0
  926. package/src/utils/test-runners.d.ts +9 -0
  927. package/src/utils/test-runners.js +14 -0
  928. package/src/utils/types.d.ts +4 -0
  929. package/src/utils/types.js +2 -0
  930. package/src/utils/version-utils.d.ts +3 -0
  931. package/src/utils/version-utils.js +19 -0
  932. package/src/utils/versions.d.ts +25 -0
  933. package/src/utils/versions.js +28 -0
  934. package/tailwind.d.ts +6 -0
  935. package/tailwind.js +29 -0
  936. package/testing/index.d.ts +1 -0
  937. package/testing/index.js +6 -0
  938. package/testing/ng-package.json +6 -0
  939. package/testing/src/testing-utils.d.ts +31 -0
  940. package/testing/src/testing-utils.js +40 -0
@@ -0,0 +1,834 @@
1
+ import { Component, ViewEncapsulation } from '@angular/core';
2
+
3
+ @Component({
4
+ selector: '<%= nxWelcomeSelector %>',
5
+ template: `
6
+ <!--
7
+ * * * * * * * * * * * * * * * * * * * * * * * * * * * *
8
+ This is a starter component and can be deleted.
9
+ * * * * * * * * * * * * * * * * * * * * * * * * * * * *
10
+ Delete this file and get started with your project!
11
+ * * * * * * * * * * * * * * * * * * * * * * * * * * * *
12
+ -->
13
+ <style>
14
+ html {
15
+ -webkit-text-size-adjust: 100%;
16
+ font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
17
+ 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
18
+ 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
19
+ 'Noto Color Emoji';
20
+ line-height: 1.5;
21
+ tab-size: 4;
22
+ scroll-behavior: smooth;
23
+ }
24
+ body {
25
+ font-family: inherit;
26
+ line-height: inherit;
27
+ margin: 0;
28
+ }
29
+ h1,
30
+ h2,
31
+ p,
32
+ pre {
33
+ margin: 0;
34
+ }
35
+ *,
36
+ ::before,
37
+ ::after {
38
+ box-sizing: border-box;
39
+ border-width: 0;
40
+ border-style: solid;
41
+ border-color: currentColor;
42
+ }
43
+ h1,
44
+ h2 {
45
+ font-size: inherit;
46
+ font-weight: inherit;
47
+ }
48
+ a {
49
+ color: inherit;
50
+ text-decoration: inherit;
51
+ }
52
+ pre {
53
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
54
+ 'Liberation Mono', 'Courier New', monospace;
55
+ }
56
+ svg {
57
+ display: block;
58
+ vertical-align: middle;
59
+ }
60
+ svg {
61
+ shape-rendering: auto;
62
+ text-rendering: optimizeLegibility;
63
+ }
64
+ pre {
65
+ background-color: rgba(55, 65, 81, 1);
66
+ border-radius: 0.25rem;
67
+ color: rgba(229, 231, 235, 1);
68
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
69
+ 'Liberation Mono', 'Courier New', monospace;
70
+ overflow: scroll;
71
+ padding: 0.5rem 0.75rem;
72
+ }
73
+ .shadow {
74
+ box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1),
75
+ 0 4px 6px -2px rgba(0, 0, 0, 0.05);
76
+ }
77
+ .rounded {
78
+ border-radius: 1.5rem;
79
+ }
80
+ .wrapper {
81
+ width: 100%;
82
+ }
83
+ .container {
84
+ margin-left: auto;
85
+ margin-right: auto;
86
+ max-width: 768px;
87
+ padding-bottom: 3rem;
88
+ padding-left: 1rem;
89
+ padding-right: 1rem;
90
+ color: rgba(55, 65, 81, 1);
91
+ width: 100%;
92
+ }
93
+ #welcome {
94
+ margin-top: 2.5rem;
95
+ }
96
+ #welcome h1 {
97
+ font-size: 3rem;
98
+ font-weight: 500;
99
+ letter-spacing: -0.025em;
100
+ line-height: 1;
101
+ }
102
+ #welcome span {
103
+ display: block;
104
+ font-size: 1.875rem;
105
+ font-weight: 300;
106
+ line-height: 2.25rem;
107
+ margin-bottom: 0.5rem;
108
+ }
109
+ #hero {
110
+ align-items: center;
111
+ background-color: hsla(214, 62%, 21%, 1);
112
+ border: none;
113
+ box-sizing: border-box;
114
+ color: rgba(55, 65, 81, 1);
115
+ display: grid;
116
+ grid-template-columns: 1fr;
117
+ margin-top: 3.5rem;
118
+ }
119
+ #hero .text-container {
120
+ color: rgba(255, 255, 255, 1);
121
+ padding: 3rem 2rem;
122
+ }
123
+ #hero .text-container h2 {
124
+ font-size: 1.5rem;
125
+ line-height: 2rem;
126
+ position: relative;
127
+ }
128
+ #hero .text-container h2 svg {
129
+ color: hsla(162, 47%, 50%, 1);
130
+ height: 2rem;
131
+ left: -0.25rem;
132
+ position: absolute;
133
+ top: 0;
134
+ width: 2rem;
135
+ }
136
+ #hero .text-container h2 span {
137
+ margin-left: 2.5rem;
138
+ }
139
+ #hero .text-container a {
140
+ background-color: rgba(255, 255, 255, 1);
141
+ border-radius: 0.75rem;
142
+ color: rgba(55, 65, 81, 1);
143
+ display: inline-block;
144
+ margin-top: 1.5rem;
145
+ padding: 1rem 2rem;
146
+ text-decoration: inherit;
147
+ }
148
+ #hero .logo-container {
149
+ display: none;
150
+ justify-content: center;
151
+ padding-left: 2rem;
152
+ padding-right: 2rem;
153
+ }
154
+ #hero .logo-container svg {
155
+ color: rgba(255, 255, 255, 1);
156
+ width: 66.666667%;
157
+ }
158
+ #middle-content {
159
+ align-items: flex-start;
160
+ display: grid;
161
+ gap: 4rem;
162
+ grid-template-columns: 1fr;
163
+ margin-top: 3.5rem;
164
+ }
165
+ #learning-materials {
166
+ padding: 2.5rem 2rem;
167
+ }
168
+ #learning-materials h2 {
169
+ font-weight: 500;
170
+ font-size: 1.25rem;
171
+ letter-spacing: -0.025em;
172
+ line-height: 1.75rem;
173
+ padding-left: 1rem;
174
+ padding-right: 1rem;
175
+ }
176
+ .list-item-link {
177
+ align-items: center;
178
+ border-radius: 0.75rem;
179
+ display: flex;
180
+ margin-top: 1rem;
181
+ padding: 1rem;
182
+ transition-property: background-color, border-color, color, fill, stroke,
183
+ opacity, box-shadow, transform, filter, backdrop-filter,
184
+ -webkit-backdrop-filter;
185
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
186
+ transition-duration: 150ms;
187
+ width: 100%;
188
+ }
189
+ .list-item-link svg:first-child {
190
+ margin-right: 1rem;
191
+ height: 1.5rem;
192
+ transition-property: background-color, border-color, color, fill, stroke,
193
+ opacity, box-shadow, transform, filter, backdrop-filter,
194
+ -webkit-backdrop-filter;
195
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
196
+ transition-duration: 150ms;
197
+ width: 1.5rem;
198
+ }
199
+ .list-item-link > span {
200
+ flex-grow: 1;
201
+ font-weight: 400;
202
+ transition-property: background-color, border-color, color, fill, stroke,
203
+ opacity, box-shadow, transform, filter, backdrop-filter,
204
+ -webkit-backdrop-filter;
205
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
206
+ transition-duration: 150ms;
207
+ }
208
+ .list-item-link > span > span {
209
+ color: rgba(107, 114, 128, 1);
210
+ display: block;
211
+ flex-grow: 1;
212
+ font-size: 0.75rem;
213
+ font-weight: 300;
214
+ line-height: 1rem;
215
+ transition-property: background-color, border-color, color, fill, stroke,
216
+ opacity, box-shadow, transform, filter, backdrop-filter,
217
+ -webkit-backdrop-filter;
218
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
219
+ transition-duration: 150ms;
220
+ }
221
+ .list-item-link svg:last-child {
222
+ height: 1rem;
223
+ transition-property: all;
224
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
225
+ transition-duration: 150ms;
226
+ width: 1rem;
227
+ }
228
+ .list-item-link:hover {
229
+ color: rgba(255, 255, 255, 1);
230
+ background-color: hsla(162, 47%, 50%, 1);
231
+ }
232
+ .list-item-link:hover > span {
233
+ }
234
+ .list-item-link:hover > span > span {
235
+ color: rgba(243, 244, 246, 1);
236
+ }
237
+ .list-item-link:hover svg:last-child {
238
+ transform: translateX(0.25rem);
239
+ }
240
+ #other-links {
241
+ }
242
+ .button-pill {
243
+ padding: 1.5rem 2rem;
244
+ margin-bottom: 2rem;
245
+ transition-duration: 300ms;
246
+ transition-property: background-color, border-color, color, fill, stroke,
247
+ opacity, box-shadow, transform, filter, backdrop-filter,
248
+ -webkit-backdrop-filter;
249
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
250
+ align-items: center;
251
+ display: flex;
252
+ }
253
+ .button-pill svg {
254
+ transition-property: background-color, border-color, color, fill, stroke,
255
+ opacity, box-shadow, transform, filter, backdrop-filter,
256
+ -webkit-backdrop-filter;
257
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
258
+ transition-duration: 150ms;
259
+ flex-shrink: 0;
260
+ width: 3rem;
261
+ }
262
+ .button-pill > span {
263
+ letter-spacing: -0.025em;
264
+ font-weight: 400;
265
+ font-size: 1.125rem;
266
+ line-height: 1.75rem;
267
+ padding-left: 1rem;
268
+ padding-right: 1rem;
269
+ }
270
+ .button-pill span span {
271
+ display: block;
272
+ font-size: 0.875rem;
273
+ font-weight: 300;
274
+ line-height: 1.25rem;
275
+ }
276
+ .button-pill:hover svg,
277
+ .button-pill:hover {
278
+ color: rgba(255, 255, 255, 1) !important;
279
+ }
280
+ .nx-console:hover {
281
+ background-color: rgba(0, 122, 204, 1);
282
+ }
283
+ .nx-console svg {
284
+ color: rgba(0, 122, 204, 1);
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
+ }
295
+ #nx-repo:hover {
296
+ background-color: rgba(24, 23, 23, 1);
297
+ }
298
+ #nx-repo svg {
299
+ color: rgba(24, 23, 23, 1);
300
+ }
301
+ #nx-cloud {
302
+ margin-bottom: 2rem;
303
+ margin-top: 2rem;
304
+ padding: 2.5rem 2rem;
305
+ }
306
+ #nx-cloud > div {
307
+ align-items: center;
308
+ display: flex;
309
+ }
310
+ #nx-cloud > div svg {
311
+ border-radius: 0.375rem;
312
+ flex-shrink: 0;
313
+ width: 3rem;
314
+ }
315
+ #nx-cloud > div h2 {
316
+ font-size: 1.125rem;
317
+ font-weight: 400;
318
+ letter-spacing: -0.025em;
319
+ line-height: 1.75rem;
320
+ padding-left: 1rem;
321
+ padding-right: 1rem;
322
+ }
323
+ #nx-cloud > div h2 span {
324
+ display: block;
325
+ font-size: 0.875rem;
326
+ font-weight: 300;
327
+ line-height: 1.25rem;
328
+ }
329
+ #nx-cloud p {
330
+ font-size: 1rem;
331
+ line-height: 1.5rem;
332
+ margin-top: 1rem;
333
+ }
334
+ #nx-cloud pre {
335
+ margin-top: 1rem;
336
+ }
337
+ #nx-cloud a {
338
+ color: rgba(107, 114, 128, 1);
339
+ display: block;
340
+ font-size: 0.875rem;
341
+ line-height: 1.25rem;
342
+ margin-top: 1.5rem;
343
+ text-align: right;
344
+ }
345
+ #nx-cloud a:hover {
346
+ text-decoration: underline;
347
+ }
348
+ #commands {
349
+ padding: 2.5rem 2rem;
350
+ margin-top: 3.5rem;
351
+ }
352
+ #commands h2 {
353
+ font-size: 1.25rem;
354
+ font-weight: 400;
355
+ letter-spacing: -0.025em;
356
+ line-height: 1.75rem;
357
+ padding-left: 1rem;
358
+ padding-right: 1rem;
359
+ }
360
+ #commands p {
361
+ font-size: 1rem;
362
+ font-weight: 300;
363
+ line-height: 1.5rem;
364
+ margin-top: 1rem;
365
+ padding-left: 1rem;
366
+ padding-right: 1rem;
367
+ }
368
+ details {
369
+ align-items: center;
370
+ display: flex;
371
+ margin-top: 1rem;
372
+ padding-left: 1rem;
373
+ padding-right: 1rem;
374
+ width: 100%;
375
+ }
376
+ details pre > span {
377
+ color: rgba(181, 181, 181, 1);
378
+ }
379
+ summary {
380
+ border-radius: 0.5rem;
381
+ display: flex;
382
+ font-weight: 400;
383
+ padding: 0.5rem;
384
+ cursor: pointer;
385
+ transition-property: background-color, border-color, color, fill, stroke,
386
+ opacity, box-shadow, transform, filter, backdrop-filter,
387
+ -webkit-backdrop-filter;
388
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
389
+ transition-duration: 150ms;
390
+ }
391
+ summary:hover {
392
+ background-color: rgba(243, 244, 246, 1);
393
+ }
394
+ summary svg {
395
+ height: 1.5rem;
396
+ margin-right: 1rem;
397
+ width: 1.5rem;
398
+ }
399
+ #love {
400
+ color: rgba(107, 114, 128, 1);
401
+ font-size: 0.875rem;
402
+ line-height: 1.25rem;
403
+ margin-top: 3.5rem;
404
+ opacity: 0.6;
405
+ text-align: center;
406
+ }
407
+ #love svg {
408
+ color: rgba(252, 165, 165, 1);
409
+ width: 1.25rem;
410
+ height: 1.25rem;
411
+ display: inline;
412
+ margin-top: -0.25rem;
413
+ }
414
+ @media screen and (min-width: 768px) {
415
+ #hero {
416
+ grid-template-columns: repeat(2, minmax(0, 1fr));
417
+ }
418
+ #hero .logo-container {
419
+ display: flex;
420
+ }
421
+ #middle-content {
422
+ grid-template-columns: repeat(2, minmax(0, 1fr));
423
+ }
424
+ }
425
+ </style>
426
+ <div class="wrapper">
427
+ <div class="container">
428
+ <!-- WELCOME -->
429
+ <div id="welcome">
430
+ <h1>
431
+ <span> Hello there, </span>
432
+ Welcome <%= appName %> 👋
433
+ </h1>
434
+ </div>
435
+ <!-- HERO -->
436
+ <div id="hero" class="rounded">
437
+ <div class="text-container">
438
+ <h2>
439
+ <svg
440
+ fill="none"
441
+ stroke="currentColor"
442
+ viewBox="0 0 24 24"
443
+ xmlns="http://www.w3.org/2000/svg"
444
+ >
445
+ <path
446
+ stroke-linecap="round"
447
+ stroke-linejoin="round"
448
+ stroke-width="2"
449
+ d="M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z"
450
+ />
451
+ </svg>
452
+ <span>You&apos;re up and running</span>
453
+ </h2>
454
+ <a href="#commands"> What&apos;s next? </a>
455
+ </div>
456
+ <div class="logo-container">
457
+ <svg
458
+ fill="currentColor"
459
+ role="img"
460
+ viewBox="0 0 24 24"
461
+ xmlns="http://www.w3.org/2000/svg"
462
+ >
463
+ <path
464
+ d="M11.987 14.138l-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998 3.044 4.759zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833h3.645zm5.634 4.134a2.061 2.061 0 0 0-1.969 1.336 1.963 1.963 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88zm3.39 1.061c-.375-.13-.8-.277-1.109-.681-.06-.08-.116-.17-.176-.265a2.143 2.143 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.482 2.482 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.723.723 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.364 5.364 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596zm.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74z"
465
+ />
466
+ </svg>
467
+ </div>
468
+ </div>
469
+ <!-- MIDDLE CONTENT -->
470
+ <div id="middle-content">
471
+ <div id="learning-materials" class="rounded shadow">
472
+ <h2>Learning materials</h2>
473
+ <a href="https://nx.dev/getting-started/intro?utm_source=nx-project" target="_blank" rel="noreferrer" class="list-item-link">
474
+ <svg
475
+ fill="none"
476
+ stroke="currentColor"
477
+ viewBox="0 0 24 24"
478
+ xmlns="http://www.w3.org/2000/svg"
479
+ >
480
+ <path
481
+ stroke-linecap="round"
482
+ stroke-linejoin="round"
483
+ stroke-width="2"
484
+ d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"
485
+ />
486
+ </svg>
487
+ <span>
488
+ Documentation
489
+ <span> Everything is in there </span>
490
+ </span>
491
+ <svg
492
+ fill="none"
493
+ stroke="currentColor"
494
+ viewBox="0 0 24 24"
495
+ xmlns="http://www.w3.org/2000/svg"
496
+ >
497
+ <path
498
+ stroke-linecap="round"
499
+ stroke-linejoin="round"
500
+ stroke-width="2"
501
+ d="M9 5l7 7-7 7"
502
+ />
503
+ </svg>
504
+ </a>
505
+ <a href="https://blog.nrwl.io/?utm_source=nx-project" target="_blank" rel="noreferrer" class="list-item-link">
506
+ <svg
507
+ fill="none"
508
+ stroke="currentColor"
509
+ viewBox="0 0 24 24"
510
+ xmlns="http://www.w3.org/2000/svg"
511
+ >
512
+ <path
513
+ stroke-linecap="round"
514
+ stroke-linejoin="round"
515
+ stroke-width="2"
516
+ d="M19 20H5a2 2 0 01-2-2V6a2 2 0 012-2h10a2 2 0 012 2v1m2 13a2 2 0 01-2-2V7m2 13a2 2 0 002-2V9a2 2 0 00-2-2h-2m-4-3H9M7 16h6M7 8h6v4H7V8z"
517
+ />
518
+ </svg>
519
+ <span>
520
+ Blog
521
+ <span> Changelog, features & events </span>
522
+ </span>
523
+ <svg
524
+ fill="none"
525
+ stroke="currentColor"
526
+ viewBox="0 0 24 24"
527
+ xmlns="http://www.w3.org/2000/svg"
528
+ >
529
+ <path
530
+ stroke-linecap="round"
531
+ stroke-linejoin="round"
532
+ stroke-width="2"
533
+ d="M9 5l7 7-7 7"
534
+ />
535
+ </svg>
536
+ </a>
537
+ <a href="https://www.youtube.com/@NxDevtools/videos?utm_source=nx-project&sub_confirmation=1" target="_blank" rel="noreferrer" class="list-item-link">
538
+ <svg
539
+ role="img"
540
+ viewBox="0 0 24 24"
541
+ fill="currentColor"
542
+ xmlns="http://www.w3.org/2000/svg"
543
+ >
544
+ <title>YouTube</title>
545
+ <path
546
+ d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"
547
+ />
548
+ </svg>
549
+ <span>
550
+ YouTube channel
551
+ <span> Nx Show, talks & tutorials </span>
552
+ </span>
553
+ <svg
554
+ fill="none"
555
+ stroke="currentColor"
556
+ viewBox="0 0 24 24"
557
+ xmlns="http://www.w3.org/2000/svg"
558
+ >
559
+ <path
560
+ stroke-linecap="round"
561
+ stroke-linejoin="round"
562
+ stroke-width="2"
563
+ d="M9 5l7 7-7 7"
564
+ />
565
+ </svg>
566
+ </a>
567
+ <a href="https://nx.dev/angular-tutorial/1-code-generation?utm_source=nx-project" target="_blank" rel="noreferrer" class="list-item-link">
568
+ <svg
569
+ fill="none"
570
+ stroke="currentColor"
571
+ viewBox="0 0 24 24"
572
+ xmlns="http://www.w3.org/2000/svg"
573
+ >
574
+ <path
575
+ stroke-linecap="round"
576
+ stroke-linejoin="round"
577
+ stroke-width="2"
578
+ d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
579
+ />
580
+ </svg>
581
+ <span>
582
+ Interactive tutorials
583
+ <span> Create an app, step-by-step </span>
584
+ </span>
585
+ <svg
586
+ fill="none"
587
+ stroke="currentColor"
588
+ viewBox="0 0 24 24"
589
+ xmlns="http://www.w3.org/2000/svg"
590
+ >
591
+ <path
592
+ stroke-linecap="round"
593
+ stroke-linejoin="round"
594
+ stroke-width="2"
595
+ d="M9 5l7 7-7 7"
596
+ />
597
+ </svg>
598
+ </a>
599
+ <a href="https://nxplaybook.com/?utm_source=nx-project" target="_blank" rel="noreferrer" class="list-item-link">
600
+ <svg
601
+ fill="none"
602
+ stroke="currentColor"
603
+ viewBox="0 0 24 24"
604
+ xmlns="http://www.w3.org/2000/svg"
605
+ >
606
+ <path d="M12 14l9-5-9-5-9 5 9 5z" />
607
+ <path
608
+ d="M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z"
609
+ />
610
+ <path
611
+ stroke-linecap="round"
612
+ stroke-linejoin="round"
613
+ stroke-width="2"
614
+ d="M12 14l9-5-9-5-9 5 9 5zm0 0l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14zm-4 6v-7.5l4-2.222"
615
+ />
616
+ </svg>
617
+ <span>
618
+ Video courses
619
+ <span> Nx custom courses </span>
620
+ </span>
621
+ <svg
622
+ fill="none"
623
+ stroke="currentColor"
624
+ viewBox="0 0 24 24"
625
+ xmlns="http://www.w3.org/2000/svg"
626
+ >
627
+ <path
628
+ stroke-linecap="round"
629
+ stroke-linejoin="round"
630
+ stroke-width="2"
631
+ d="M9 5l7 7-7 7"
632
+ />
633
+ </svg>
634
+ </a>
635
+ </div>
636
+ <div id="other-links">
637
+ <a class="button-pill rounded shadow nx-console" href="https://marketplace.visualstudio.com/items?itemName=nrwl.angular-console&utm_source=nx-project" target="_blank" rel="noreferrer">
638
+ <svg
639
+ fill="currentColor"
640
+ role="img"
641
+ viewBox="0 0 24 24"
642
+ xmlns="http://www.w3.org/2000/svg"
643
+ >
644
+ <title>Visual Studio Code</title>
645
+ <path
646
+ d="M23.15 2.587L18.21.21a1.494 1.494 0 0 0-1.705.29l-9.46 8.63-4.12-3.128a.999.999 0 0 0-1.276.057L.327 7.261A1 1 0 0 0 .326 8.74L3.899 12 .326 15.26a1 1 0 0 0 .001 1.479L1.65 17.94a.999.999 0 0 0 1.276.057l4.12-3.128 9.46 8.63a1.492 1.492 0 0 0 1.704.29l4.942-2.377A1.5 1.5 0 0 0 24 20.06V3.939a1.5 1.5 0 0 0-.85-1.352zm-5.146 14.861L10.826 12l7.178-5.448v10.896z"
647
+ />
648
+ </svg>
649
+ <span>
650
+ Install Nx Console for VSCode
651
+ <span>The official VSCode extension for Nx.</span>
652
+ </span>
653
+ </a>
654
+ <a
655
+ class="button-pill rounded shadow nx-console-jetbrains"
656
+ href="https://plugins.jetbrains.com/plugin/21060-nx-console"
657
+ target="_blank"
658
+ rel="noreferrer"
659
+ >
660
+ <svg
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>
680
+ <span>
681
+ Install Nx Console for JetBrains
682
+ <span>Available for WebStorm, Intellij IDEA Ultimate and more!</span>
683
+ </span>
684
+ </a>
685
+ <div id="nx-cloud" class="rounded shadow">
686
+ <div>
687
+ <svg id="nx-cloud-logo" role="img" xmlns="http://www.w3.org/2000/svg" stroke="currentColor" fill="transparent" viewBox="0 0 24 24">
688
+ <path stroke-width="2" d="M23 3.75V6.5c-3.036 0-5.5 2.464-5.5 5.5s-2.464 5.5-5.5 5.5-5.5 2.464-5.5 5.5H3.75C2.232 23 1 21.768 1 20.25V3.75C1 2.232 2.232 1 3.75 1h16.5C21.768 1 23 2.232 23 3.75Z" />
689
+ <path stroke-width="2" d="M23 6v14.1667C23 21.7307 21.7307 23 20.1667 23H6c0-3.128 2.53867-5.6667 5.6667-5.6667 3.128 0 5.6666-2.5386 5.6666-5.6666C17.3333 8.53867 19.872 6 23 6Z" />
690
+ </svg>
691
+ <h2>
692
+ Nx Cloud
693
+ <span>
694
+ Enable faster CI & better DX
695
+ </span>
696
+ </h2>
697
+ </div>
698
+ <p>
699
+ You can activate distributed tasks executions and caching by
700
+ running:
701
+ </p>
702
+ <pre>nx connect</pre>
703
+ <a href="https://nx.app/?utm_source=nx-project" target="_blank" rel="noreferrer"> What is Nx Cloud? </a>
704
+ </div>
705
+ <a id="nx-repo" class="button-pill rounded shadow" href="https://github.com/nrwl/nx?utm_source=nx-project" target="_blank" rel="noreferrer">
706
+ <svg
707
+ fill="currentColor"
708
+ role="img"
709
+ viewBox="0 0 24 24"
710
+ xmlns="http://www.w3.org/2000/svg"
711
+ >
712
+ <path
713
+ d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"
714
+ />
715
+ </svg>
716
+ <span>
717
+ Nx is open source
718
+ <span> Love Nx? Give us a star! </span>
719
+ </span>
720
+ </a>
721
+ </div>
722
+ </div>
723
+ <!-- COMMANDS -->
724
+ <div id="commands" class="rounded shadow">
725
+ <h2>Next steps</h2>
726
+ <p>Here are some things you can do with Nx:</p>
727
+ <details>
728
+ <summary>
729
+ <svg
730
+ fill="none"
731
+ stroke="currentColor"
732
+ viewBox="0 0 24 24"
733
+ xmlns="http://www.w3.org/2000/svg"
734
+ >
735
+ <path
736
+ stroke-linecap="round"
737
+ stroke-linejoin="round"
738
+ stroke-width="2"
739
+ d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
740
+ />
741
+ </svg>
742
+ Add UI library
743
+ </summary>
744
+ <pre><span># Generate UI lib</span>
745
+ nx g &#64;nx/angular:lib ui
746
+ <span># Add a component</span>
747
+ nx g &#64;nx/angular:component ui/src/lib/button</pre>
748
+ </details>
749
+ <details>
750
+ <summary>
751
+ <svg
752
+ fill="none"
753
+ stroke="currentColor"
754
+ viewBox="0 0 24 24"
755
+ xmlns="http://www.w3.org/2000/svg"
756
+ >
757
+ <path
758
+ strokeLinecap="round"
759
+ strokeLinejoin="round"
760
+ strokeWidth="2"
761
+ d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
762
+ />
763
+ </svg>
764
+ View project details
765
+ </summary>
766
+ <pre>nx show project <%= appName %> --web</pre>
767
+ </details>
768
+ <details>
769
+ <summary>
770
+ <svg
771
+ fill="none"
772
+ stroke="currentColor"
773
+ viewBox="0 0 24 24"
774
+ xmlns="http://www.w3.org/2000/svg"
775
+ >
776
+ <path
777
+ stroke-linecap="round"
778
+ stroke-linejoin="round"
779
+ stroke-width="2"
780
+ d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
781
+ />
782
+ </svg>
783
+ View interactive project graph
784
+ </summary>
785
+ <pre>nx graph</pre>
786
+ </details>
787
+ <details>
788
+ <summary>
789
+ <svg
790
+ fill="none"
791
+ stroke="currentColor"
792
+ viewBox="0 0 24 24"
793
+ xmlns="http://www.w3.org/2000/svg"
794
+ >
795
+ <path
796
+ stroke-linecap="round"
797
+ stroke-linejoin="round"
798
+ stroke-width="2"
799
+ d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
800
+ />
801
+ </svg>
802
+ Run affected commands
803
+ </summary>
804
+ <pre><span># see what&apos;s been affected by changes</span>
805
+ nx affected:graph
806
+ <span># run tests for current changes</span>
807
+ nx affected:test
808
+ <span># run e2e tests for current changes</span>
809
+ nx affected:e2e</pre>
810
+ </details>
811
+ </div>
812
+ <p id="love">
813
+ Carefully crafted with
814
+ <svg
815
+ fill="currentColor"
816
+ stroke="none"
817
+ viewBox="0 0 24 24"
818
+ xmlns="http://www.w3.org/2000/svg"
819
+ >
820
+ <path
821
+ stroke-linecap="round"
822
+ stroke-linejoin="round"
823
+ stroke-width="2"
824
+ d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"
825
+ />
826
+ </svg>
827
+ </p>
828
+ </div>
829
+ </div>
830
+ `,
831
+ styles: [],
832
+ encapsulation: ViewEncapsulation.None,
833
+ })
834
+ export class NxWelcomeComponent {}