@rxap/plugin-angular 16.1.0-dev.6 → 16.1.0-dev.61

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 (118) hide show
  1. package/CHANGELOG.md +468 -0
  2. package/README.md +50 -1
  3. package/generators.json +37 -0
  4. package/package.json +63 -48
  5. package/src/generators/fix-schematic/index.d.ts +2 -0
  6. package/src/generators/fix-schematic/index.js +7 -0
  7. package/src/generators/fix-schematic/index.js.map +1 -0
  8. package/src/generators/init/generator.js +14 -7
  9. package/src/generators/init/generator.js.map +1 -1
  10. package/src/generators/init/index.d.ts +2 -0
  11. package/src/generators/init/index.js +7 -0
  12. package/src/generators/init/index.js.map +1 -0
  13. package/src/generators/init/schema.d.ts +2 -0
  14. package/src/generators/init/schema.json +10 -0
  15. package/src/generators/init-application/files/app/app.navigation.ts.template +11 -0
  16. package/src/generators/init-application/files/app/app.routes.ts.template +14 -0
  17. package/src/generators/init-application/files/app/layout.routes.ts.template +33 -0
  18. package/src/generators/init-application/files/assets/icons/create-pwa-icons.sh +11 -0
  19. package/src/generators/init-application/files/assets/icons/icon-114x114.png +0 -0
  20. package/src/generators/init-application/files/assets/icons/icon-120x120.png +0 -0
  21. package/src/generators/init-application/files/assets/icons/icon-128x128.png +0 -0
  22. package/src/generators/init-application/files/assets/icons/icon-144x144.png +0 -0
  23. package/src/generators/init-application/files/assets/icons/icon-152x152.png +0 -0
  24. package/src/generators/init-application/files/assets/icons/icon-16x16.png +0 -0
  25. package/src/generators/init-application/files/assets/icons/icon-180x180.png +0 -0
  26. package/src/generators/init-application/files/assets/icons/icon-192x192.png +0 -0
  27. package/src/generators/init-application/files/assets/icons/icon-32x32.png +0 -0
  28. package/src/generators/init-application/files/assets/icons/icon-384x384.png +0 -0
  29. package/src/generators/init-application/files/assets/icons/icon-512x512.png +0 -0
  30. package/src/generators/init-application/files/assets/icons/icon-57x57.png +0 -0
  31. package/src/generators/init-application/files/assets/icons/icon-60x60.png +0 -0
  32. package/src/generators/init-application/files/assets/icons/icon-72x72.png +0 -0
  33. package/src/generators/init-application/files/assets/icons/icon-76x76.png +0 -0
  34. package/src/generators/init-application/files/assets/icons/icon-96x96.png +0 -0
  35. package/src/generators/init-application/files/assets/icons/icon.png +0 -0
  36. package/src/generators/init-application/files/assets/icons/icon.svg +43 -0
  37. package/src/generators/init-application/files/assets/logo.png +0 -0
  38. package/src/generators/init-application/files/assets/logo.svg +63 -0
  39. package/src/generators/init-application/files/{shared → i18n}/i18n.index.html.hbs +1 -1
  40. package/src/generators/init-application/files/monolithic/app/app.navigation.ts.template +11 -0
  41. package/src/generators/init-application/files/monolithic/app/app.routes.ts.template +14 -0
  42. package/src/generators/init-application/files/monolithic/app/layout.routes.ts.template +32 -0
  43. package/src/generators/init-application/files/monolithic/index.html.template +165 -0
  44. package/src/generators/init-application/files/monolithic/styles.scss.template +3 -0
  45. package/src/generators/init-application/files/oauth/silent-refresh.html +42 -0
  46. package/src/generators/init-application/files/service-worker/manifest.webmanifest +52 -0
  47. package/src/generators/init-application/files/shared/Dockerfile +29 -0
  48. package/src/generators/init-application/files/shared/assets/build.json +1 -0
  49. package/src/generators/init-application/files/shared/ngsw-config.json +2 -14
  50. package/src/generators/init-application/files/styles/_fonts.scss +9 -0
  51. package/src/generators/init-application/files/styles/_index.scss +10 -0
  52. package/src/generators/init-application/files/styles/_loading-animation.scss +200 -0
  53. package/src/generators/init-application/files/styles/_palette.scss +98 -0
  54. package/src/generators/init-application/files/styles/_table.scss +45 -0
  55. package/src/generators/init-application/files/styles/_theme.scss +14 -0
  56. package/src/generators/init-application/files/styles/_utilities.scss +112 -0
  57. package/src/generators/init-application/files/styles/_variables.scss +77 -0
  58. package/src/generators/init-application/files/styles/fonts/_croissant-one.scss +7 -0
  59. package/src/generators/init-application/files/styles/fonts/_fuggles.scss +7 -0
  60. package/src/generators/init-application/files/styles/fonts/_inclusive-sans.scss +7 -0
  61. package/src/generators/init-application/files/styles/fonts/_material-icons.scss +20 -0
  62. package/src/generators/init-application/files/styles/fonts/_mooli.scss +7 -0
  63. package/src/generators/init-application/files/styles/fonts/_pixelify-sans.scss +7 -0
  64. package/src/generators/init-application/files/styles/fonts/_roboto-mono.scss +7 -0
  65. package/src/generators/init-application/files/styles/fonts/_roboto.scss +95 -0
  66. package/src/generators/init-application/files/styles/fonts/_young-serif.scss +7 -0
  67. package/src/generators/init-application/files/styles/fonts/croissant-one.ttf +0 -0
  68. package/src/generators/init-application/files/styles/fonts/fuggles.ttf +0 -0
  69. package/src/generators/init-application/files/styles/fonts/inclusive-sans.ttf +0 -0
  70. package/src/generators/init-application/files/styles/fonts/material-icons.ttf +0 -0
  71. package/src/generators/init-application/files/styles/fonts/molli.ttf +0 -0
  72. package/src/generators/init-application/files/styles/fonts/pixelify-sans.ttf +0 -0
  73. package/src/generators/init-application/files/styles/fonts/roboto-mono.ttf +0 -0
  74. package/src/generators/init-application/files/styles/fonts/young-serif.ttf +0 -0
  75. package/src/generators/init-application/generator.js +545 -84
  76. package/src/generators/init-application/generator.js.map +1 -1
  77. package/src/generators/init-application/index.d.ts +2 -0
  78. package/src/generators/init-application/index.js +7 -0
  79. package/src/generators/init-application/index.js.map +1 -0
  80. package/src/generators/init-application/schema.d.ts +9 -0
  81. package/src/generators/init-application/schema.json +59 -8
  82. package/src/generators/init-feature/files/feature/__name__/routes.ts.template +10 -0
  83. package/src/generators/init-feature/generator.d.ts +4 -0
  84. package/src/generators/init-feature/generator.js +26 -0
  85. package/src/generators/init-feature/generator.js.map +1 -0
  86. package/src/generators/init-feature/index.d.ts +2 -0
  87. package/src/generators/init-feature/index.js +7 -0
  88. package/src/generators/init-feature/index.js.map +1 -0
  89. package/src/generators/init-feature/schema.d.ts +4 -0
  90. package/src/generators/init-feature/schema.json +20 -0
  91. package/src/generators/init-library/generator.js +106 -14
  92. package/src/generators/init-library/generator.js.map +1 -1
  93. package/src/generators/init-library/index.d.ts +2 -0
  94. package/src/generators/init-library/index.js +7 -0
  95. package/src/generators/init-library/index.js.map +1 -0
  96. package/src/generators/init-library/schema.d.ts +3 -0
  97. package/src/generators/init-library/schema.json +14 -0
  98. package/src/generators/schematic/index.d.ts +2 -0
  99. package/src/generators/schematic/index.js +7 -0
  100. package/src/generators/schematic/index.js.map +1 -0
  101. package/src/lib/add-route.d.ts +3 -0
  102. package/src/lib/add-route.js +27 -0
  103. package/src/lib/add-route.js.map +1 -0
  104. package/src/lib/build-route-object.d.ts +7 -0
  105. package/src/lib/build-route-object.js +18 -0
  106. package/src/lib/build-route-object.js.map +1 -0
  107. package/src/lib/coerce-cypress-component-testing.d.ts +2 -0
  108. package/src/lib/coerce-cypress-component-testing.js +79 -0
  109. package/src/lib/coerce-cypress-component-testing.js.map +1 -0
  110. package/src/lib/find-parent-route.d.ts +2 -0
  111. package/src/lib/find-parent-route.js +54 -0
  112. package/src/lib/find-parent-route.js.map +1 -0
  113. package/src/lib/skip-project.js +3 -3
  114. package/src/lib/skip-project.js.map +1 -1
  115. package/src/generators/init-application/files/shared/assets/Dockerfile +0 -5
  116. package/src/generators/init-application/files/shared/assets/nginx.conf +0 -74
  117. package/src/generators/init-application/files/shared/configuration/.gitkeep +0 -0
  118. /package/src/generators/init-application/files/{shared → assets}/.gitkeep +0 -0
package/CHANGELOG.md CHANGED
@@ -3,6 +3,474 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [16.1.0-dev.61](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.60...@rxap/plugin-angular@16.1.0-dev.61) (2023-10-22)
7
+
8
+ ### Bug Fixes
9
+
10
+ - update default Dockerfile ([f5fa480](https://gitlab.com/rxap/packages/commit/f5fa4808b5dd6c2b11e1a7e074bdea314c90a3a6))
11
+
12
+ # [16.1.0-dev.60](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.59...@rxap/plugin-angular@16.1.0-dev.60) (2023-10-20)
13
+
14
+ ### Bug Fixes
15
+
16
+ - ensure the web3-storage plugin is installed ([6c8614f](https://gitlab.com/rxap/packages/commit/6c8614f771dddf3894255688f03a1ae9c2be041e))
17
+ - subdomain must include a tailing dot ([7c2b609](https://gitlab.com/rxap/packages/commit/7c2b60937cf99113f48f2787e1dcd189dc482213))
18
+
19
+ # [16.1.0-dev.59](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.58...@rxap/plugin-angular@16.1.0-dev.59) (2023-10-18)
20
+
21
+ ### Bug Fixes
22
+
23
+ - only try to add a implicit dependencies if a custom devServerTarget is defined ([d02bfe3](https://gitlab.com/rxap/packages/commit/d02bfe3ba7652304d66e4bbd081f9fc5c422314c))
24
+
25
+ ### Features
26
+
27
+ - add i18n-index-html target if i18n and deploy to web3-storage is used ([490585e](https://gitlab.com/rxap/packages/commit/490585e6e5ab814d1d5130d2b1ee203babe30beb))
28
+ - add option deploy to add the web3-storage target ([d0205a8](https://gitlab.com/rxap/packages/commit/d0205a8b7a947bca08bc6b4c2e54da79439007a0))
29
+
30
+ # [16.1.0-dev.58](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.57...@rxap/plugin-angular@16.1.0-dev.58) (2023-10-16)
31
+
32
+ ### Bug Fixes
33
+
34
+ - add new route at the start ([5b970e0](https://gitlab.com/rxap/packages/commit/5b970e012b3cdfbaa0597e6480a297c0caff4595))
35
+ - use utility CreateProject function to create a ts-morph Project instance ([78b308f](https://gitlab.com/rxap/packages/commit/78b308fd10747616c7c7f27e81501a4ad5052a77))
36
+
37
+ # [16.1.0-dev.57](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.56...@rxap/plugin-angular@16.1.0-dev.57) (2023-10-12)
38
+
39
+ ### Bug Fixes
40
+
41
+ - update the tsconfig file if changed ([b64b7e5](https://gitlab.com/rxap/packages/commit/b64b7e5e9fd365cc3b6bd89000729be4cd1e8c2c))
42
+
43
+ # [16.1.0-dev.56](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.55...@rxap/plugin-angular@16.1.0-dev.56) (2023-10-12)
44
+
45
+ ### Bug Fixes
46
+
47
+ - only overwrite budget and languages if overwrite flag is set ([3b0a4d5](https://gitlab.com/rxap/packages/commit/3b0a4d5e955f95a7aa8875b905153723a4ffa505))
48
+ - use correct package name ([4c65339](https://gitlab.com/rxap/packages/commit/4c6533945cc90a9e20e0b31b14fe936b5dd60089))
49
+
50
+ # [16.1.0-dev.55](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.55...@rxap/plugin-angular@16.1.0-dev.55) (2023-10-12)
51
+
52
+ ### Bug Fixes
53
+
54
+ - use correct package name ([4c65339](https://gitlab.com/rxap/packages/commit/4c6533945cc90a9e20e0b31b14fe936b5dd60089))
55
+
56
+ # [16.1.0-dev.55](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.54...@rxap/plugin-angular@16.1.0-dev.55) (2023-10-12)
57
+
58
+ ### Bug Fixes
59
+
60
+ - ensure angular localize types are imported ([0d88bbf](https://gitlab.com/rxap/packages/commit/0d88bbf2bb3ae3f576277de47c9bb1cf08cad95f))
61
+
62
+ # [16.1.0-dev.54](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.53...@rxap/plugin-angular@16.1.0-dev.54) (2023-10-12)
63
+
64
+ ### Bug Fixes
65
+
66
+ - ensure angular localize types are imported ([7d1ba81](https://gitlab.com/rxap/packages/commit/7d1ba8139ae1669f94bb6b163b735564e3ce4d2e))
67
+
68
+ # [16.1.0-dev.53](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.52...@rxap/plugin-angular@16.1.0-dev.53) (2023-10-11)
69
+
70
+ **Note:** Version bump only for package @rxap/plugin-angular
71
+
72
+ # [16.1.0-dev.52](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.51...@rxap/plugin-angular@16.1.0-dev.52) (2023-10-11)
73
+
74
+ ### Bug Fixes
75
+
76
+ - ensure required packages are installed ([dd3e670](https://gitlab.com/rxap/packages/commit/dd3e670dc30823e2f5ffed11f5f4a379a27442fa))
77
+
78
+ # [16.1.0-dev.51](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.50...@rxap/plugin-angular@16.1.0-dev.51) (2023-10-11)
79
+
80
+ ### Bug Fixes
81
+
82
+ - move angular specific function to plugin project ([3b47f49](https://gitlab.com/rxap/packages/commit/3b47f4959e61f53f426fdf4f36664c399125c0c8))
83
+
84
+ # 16.1.0-dev.50 (2023-10-11)
85
+
86
+ ### Bug Fixes
87
+
88
+ - adapt to new layout routing concept ([91f237b](https://gitlab.com/rxap/packages/commit/91f237b75bb1f1969ecaa6670e1b81f345eafa6a))
89
+ - add browser-tailwind as imp dep if project has tailwind configuration ([3d90660](https://gitlab.com/rxap/packages/commit/3d906604470f4f26d157f4683afe72b3dd8baae3))
90
+ - add build tailwind default inputs and outputs ([a3e44a0](https://gitlab.com/rxap/packages/commit/a3e44a00eb3d7acb6428016c59bf777cb5bd2263))
91
+ - add cypress configuration after library and application init ([3143462](https://gitlab.com/rxap/packages/commit/31434629003638f3b22a7e6e7e7d28d6d9c1bd18))
92
+ - add default build json ([11786f8](https://gitlab.com/rxap/packages/commit/11786f8ecbafc453750a31a0b7bc7fad9baf2345))
93
+ - add dialog update service ([7ca4a04](https://gitlab.com/rxap/packages/commit/7ca4a04062a24b6f26e5ffb7d36a078652627517))
94
+ - add docker file option to angular docker targets ([67ce088](https://gitlab.com/rxap/packages/commit/67ce08874138c76385cec290544190cc4f8e7ca9))
95
+ - add licence file to publishable packages ([d7de1cb](https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6))
96
+ - add logo.png to application assets if not exists ([e195e49](https://gitlab.com/rxap/packages/commit/e195e498128d7b2b705877b33e040049be1f1821))
97
+ - add missing files for localazy if not exists ([6a90429](https://gitlab.com/rxap/packages/commit/6a90429504cd46605460491acdf50473e411b192))
98
+ - add missing imports ([cbe7198](https://gitlab.com/rxap/packages/commit/cbe719810cf2dade49d12a50f27620fe9adb0205))
99
+ - add missing options schema ([a678d8f](https://gitlab.com/rxap/packages/commit/a678d8f80f2d17e5609ead5572eb5d5026c0c8e0))
100
+ - add missing package installations ([bd00a4a](https://gitlab.com/rxap/packages/commit/bd00a4a77cf6ff0783be707ca4d13d91e1e0775f))
101
+ - add missing polyfills default and prevent replacement ([e6ccb83](https://gitlab.com/rxap/packages/commit/e6ccb8306309b07ace354557e56c349062189a68))
102
+ - add missing providers ([cf63eed](https://gitlab.com/rxap/packages/commit/cf63eed3bcfd9cdd9df24e27f956115d298e850f))
103
+ - add newline after file content ([d1debff](https://gitlab.com/rxap/packages/commit/d1debff4103c58960b7d972684d64b9f013f7305))
104
+ - add project ts-morph ([fda78f5](https://gitlab.com/rxap/packages/commit/fda78f5ed61caac6dc5c4d9a70afd3aced6a05fa))
105
+ - add required scripts for markdown parsing ([a5bd1df](https://gitlab.com/rxap/packages/commit/a5bd1df3636b496ab5fc8be97de96a9e8ccf3c77))
106
+ - add service worker files ([7d41c99](https://gitlab.com/rxap/packages/commit/7d41c99d60e22b0c1e0e8f9b299eb125bb366414))
107
+ - add skip-projects flag ([e1f31ed](https://gitlab.com/rxap/packages/commit/e1f31ed837646f605ced82a52749e62af07ba939))
108
+ - animation loading issue ([10ee4ec](https://gitlab.com/rxap/packages/commit/10ee4ec53c837e724be8e813d3a7ad1e3e097a9d))
109
+ - change from commonjs to es2022 ([cf675a7](https://gitlab.com/rxap/packages/commit/cf675a7254de9ce4b269264df59794dd42fcbd8b))
110
+ - create default application configuration folder ([5b9242e](https://gitlab.com/rxap/packages/commit/5b9242ebb710c6565685319ec40dd8f8d6e0be0e))
111
+ - create shared folder structure if Dockerfile does not exist ([0cd6dfc](https://gitlab.com/rxap/packages/commit/0cd6dfc3e8d721fdcf9f77236dfc9346370ca136))
112
+ - ensure all required cacheable operations are defined ([d9ded9c](https://gitlab.com/rxap/packages/commit/d9ded9c5e150d9781ce490ad7ac292194d09bf2a))
113
+ - ensure overwrite option is passed to sub schematics ([0c8a19b](https://gitlab.com/rxap/packages/commit/0c8a19b5166f804aa335f739a00a5415bd97f61a))
114
+ - ensure project tags ([4a59b94](https://gitlab.com/rxap/packages/commit/4a59b94526ea0ed16216b1b8001a694ac7a8bea4))
115
+ - ensure projects are buildable or publishable ([354400b](https://gitlab.com/rxap/packages/commit/354400bd7b012e67801f8986ae4a05b40ef44d4a))
116
+ - ensure the generate-open-api target is run before building or serving a angular application ([dd1d915](https://gitlab.com/rxap/packages/commit/dd1d9156d98642f69d6f3783db758688a556304d))
117
+ - ensure the localize init polyfill is added ([95159a9](https://gitlab.com/rxap/packages/commit/95159a91fe507d77bf1215c7ca3ef05e62071f7d))
118
+ - ensure the project name is not included in the project tag list ([46d4479](https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2))
119
+ - expose generators as schematics ([8a58d07](https://gitlab.com/rxap/packages/commit/8a58d07c2f1dcfff75e724a418d7c3bddb2d0bbc))
120
+ - generate readme with peer dependencies to install ([27c2cd7](https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9))
121
+ - if the application is monolithic then open-api is required ([6e757fb](https://gitlab.com/rxap/packages/commit/6e757fb4ee962e9dda3c603a8e98d83e77bca42c))
122
+ - improve dynamic theme handling ([77c62df](https://gitlab.com/rxap/packages/commit/77c62dfe77a38bdc00da6a176b09f99c38de2147))
123
+ - init index html file ([285fe1f](https://gitlab.com/rxap/packages/commit/285fe1f1069c9296d82302558f33bf0198a7a5ab))
124
+ - **init-library:** add check version executor to angular libraries ([e2b82e3](https://gitlab.com/rxap/packages/commit/e2b82e3f81076a35a4c2b7984cc813fc62dbcfda))
125
+ - install required dependencies ([a416b24](https://gitlab.com/rxap/packages/commit/a416b24af4cedbb63218de1402e5cbb2ccaf68d9))
126
+ - install required dependencies ([423352a](https://gitlab.com/rxap/packages/commit/423352a191224e098fea5691ed10304cbeb9e71e))
127
+ - install required dependencies ([85d4206](https://gitlab.com/rxap/packages/commit/85d4206beff2fb102539d0353a8b5bed9552de61))
128
+ - install required dependencies ([687d23d](https://gitlab.com/rxap/packages/commit/687d23d1dd0a026ec9284ccacec6a04d6affa3c2))
129
+ - introduce Is\*Project functions ([3c9f251](https://gitlab.com/rxap/packages/commit/3c9f251f1d7be46ca366171e79e86ef2764fa3b0))
130
+ - only add oauth files if oauth flag used ([bd558a1](https://gitlab.com/rxap/packages/commit/bd558a1f745d8b029f12f4cb4123b0022f51e9e3))
131
+ - only add specific eslint to project in the rxap repo ([bb96a9d](https://gitlab.com/rxap/packages/commit/bb96a9d4072a1dc02a3ff56467fbae80fbfda56d))
132
+ - **options:** disable generate main by default ([ee99cab](https://gitlab.com/rxap/packages/commit/ee99cab840b24480767d432c34f9873750c9d524))
133
+ - peer dependency issue ([ee95415](https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a))
134
+ - remove nx dependency ([b2b98b0](https://gitlab.com/rxap/packages/commit/b2b98b01438e9439f9743fb27629c7e96072df45))
135
+ - remove support for open-api client sdk packages ([0015878](https://gitlab.com/rxap/packages/commit/0015878e53cba42943d37354ef5c7d5f17828fd7))
136
+ - remove the default angular project files ([b4384c1](https://gitlab.com/rxap/packages/commit/b4384c1bc77cc0b2e536b63cecd5c50bd574c6b5))
137
+ - remove unused folders ([7bf40fe](https://gitlab.com/rxap/packages/commit/7bf40fe891b98fb4edbf34e486cf78d0550b252f))
138
+ - resolve font import issues ([fccfb73](https://gitlab.com/rxap/packages/commit/fccfb73d5834a933a735e0088a61cd646cfc4c52))
139
+ - restructure angular shared files ([4dcf11f](https://gitlab.com/rxap/packages/commit/4dcf11f4e763a3a42f01b1068d787dfb64743670))
140
+ - run gitlab ci generators on application init ([84f804f](https://gitlab.com/rxap/packages/commit/84f804fb533ac84f80a708cff8c1b8c78f23707c))
141
+ - run the update target defaults function independent of any project ([d204e3e](https://gitlab.com/rxap/packages/commit/d204e3ecfc81d35e25865d459aadb30ab6805e3f))
142
+ - set background ([03430d7](https://gitlab.com/rxap/packages/commit/03430d7c498e5ea8d9b608a4042aad73ab3c89ae))
143
+ - set correct default publishable library package json version ([c942e51](https://gitlab.com/rxap/packages/commit/c942e5152a19e33cf9881106879eb2df20ef723b))
144
+ - set default traefik docker labels ([1506252](https://gitlab.com/rxap/packages/commit/150625287908f4db1e1ba0571b90a0776832e8a3))
145
+ - set initial budget to 2mb ([524187e](https://gitlab.com/rxap/packages/commit/524187e27e81de5a4f65939e11748853c327e326))
146
+ - skip plugin or schematic projects ([8953299](https://gitlab.com/rxap/packages/commit/89532993198c32bc25e5008748db385f6cee25a7))
147
+ - split app and layout routes ([278dab0](https://gitlab.com/rxap/packages/commit/278dab0adc91bc8ab648d704c411f773f8e597d0))
148
+ - support oauth ([4d355d3](https://gitlab.com/rxap/packages/commit/4d355d3114d38799fb4a9aa4fc78a50d568ecf85))
149
+ - support open api legacy init ([7f569f7](https://gitlab.com/rxap/packages/commit/7f569f7cd7105fbd856679ce3d9b9d4a359d9e61))
150
+ - use CoerceFilesStructure function ([51f13e0](https://gitlab.com/rxap/packages/commit/51f13e0e261e1a93a95f5a96fe8ec4a0597d4ad3))
151
+ - use CoerceFilesStructure utility function ([2b5ac92](https://gitlab.com/rxap/packages/commit/2b5ac92dcffd7f54e4fd2181d6ecd7a5a5537e57))
152
+ - use language code instead of lang ([1208cbc](https://gitlab.com/rxap/packages/commit/1208cbc5dce8f5ba8ce0d6abb2c2b9e2c033bc53))
153
+ - use new angular bootstrap utility class ([c832b38](https://gitlab.com/rxap/packages/commit/c832b38d74851a1dfa304ff721044be66336069e))
154
+ - use new error providers and interceptors ([f5ab21a](https://gitlab.com/rxap/packages/commit/f5ab21a16328f2c99d98d56fcfa005589d5edd30))
155
+ - use utility docker image for frontend containers ([2ac2eda](https://gitlab.com/rxap/packages/commit/2ac2eda7670f9b682964e868ef1e7161bbff4465))
156
+ - use utility function to coerce default target dependencies ([d8db29f](https://gitlab.com/rxap/packages/commit/d8db29f8bd66057455ee10e695df217f03dd6792))
157
+
158
+ ### Features
159
+
160
+ - add cleanup generator ([96e58f4](https://gitlab.com/rxap/packages/commit/96e58f4da21c573c6baa5858af891a15f825d2c1))
161
+ - add init-feature generator ([9aa57c1](https://gitlab.com/rxap/packages/commit/9aa57c1e6a0f5a58f780ec4ca31d0d7dafbe1acb))
162
+ - add localazyReadKey option ([427917e](https://gitlab.com/rxap/packages/commit/427917e3d469357dcaf3d1a9667ae0719c9c6cde))
163
+ - add new executor check-ng-package ([4fbdc87](https://gitlab.com/rxap/packages/commit/4fbdc875d31ed2731d4277cb4d4b93210384227c))
164
+ - add ProvideEnvironment function ([63e17e0](https://gitlab.com/rxap/packages/commit/63e17e04f25eac4411afd148c47c38bfb106a250))
165
+ - add support for monolithic angular init ([6e15f9f](https://gitlab.com/rxap/packages/commit/6e15f9fef0ca1238cc3d53451178f635a098954c))
166
+ - add tailwind generator ([bee09c3](https://gitlab.com/rxap/packages/commit/bee09c32bd612cff4c9c220a2cd77ecdc2e39dff))
167
+ - add the mdi asset ([a6ed4ef](https://gitlab.com/rxap/packages/commit/a6ed4ef273d577571610bd25caa7cfab1ac7f582))
168
+ - coerce default application environments ([54a990d](https://gitlab.com/rxap/packages/commit/54a990d57e290c553ef782426f91ad7be81325b1))
169
+ - enforce that every sec entrypoint is include in the tsconfig ([98dc957](https://gitlab.com/rxap/packages/commit/98dc957906ed46c0552759609a3f64d32350958a))
170
+ - init application styles ([e04eb54](https://gitlab.com/rxap/packages/commit/e04eb548a1b012f801ec68b7bf5554d334dde213))
171
+ - support dynamic app config generation ([5185d97](https://gitlab.com/rxap/packages/commit/5185d976bd45c535024a3dc7ce82203165fb6521))
172
+ - support dynamic font families and theme density ([6a54998](https://gitlab.com/rxap/packages/commit/6a549982461755f4470123ce90f9fb70990ee206))
173
+ - use new angular bootstrap utility class ([5eb4f8b](https://gitlab.com/rxap/packages/commit/5eb4f8b6ccaab0512ca23fbebe821d24e26980b1))
174
+
175
+ ### Reverts
176
+
177
+ - change from commonjs to es2022 ([50eca61](https://gitlab.com/rxap/packages/commit/50eca61e9a89388d1cfeefb8b1029b302b6f307e))
178
+
179
+ # [16.1.0-dev.49](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.48...@rxap/plugin-angular@16.1.0-dev.49) (2023-10-10)
180
+
181
+ ### Bug Fixes
182
+
183
+ - remove unused folders ([fd6c10a](https://gitlab.com/rxap/packages/commit/fd6c10ad043399b3548f3f538e547f16aad6633c))
184
+ - set default traefik docker labels ([f1bb5c6](https://gitlab.com/rxap/packages/commit/f1bb5c6e6d9a78c9ce78d8af97f14ff2abcc3cf4))
185
+ - use CoerceFilesStructure utility function ([4a048af](https://gitlab.com/rxap/packages/commit/4a048af4cdbf74c010de20115d21affa37995637))
186
+
187
+ # [16.1.0-dev.48](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.47...@rxap/plugin-angular@16.1.0-dev.48) (2023-10-03)
188
+
189
+ ### Bug Fixes
190
+
191
+ - ensure all required cacheable operations are defined ([49a9199](https://gitlab.com/rxap/packages/commit/49a9199cd2592cf8550650dc17f9995e4f6727f8))
192
+
193
+ # [16.1.0-dev.47](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.46...@rxap/plugin-angular@16.1.0-dev.47) (2023-10-02)
194
+
195
+ ### Bug Fixes
196
+
197
+ - only add specific eslint to project in the rxap repo ([8f59c18](https://gitlab.com/rxap/packages/commit/8f59c1882fdc5eb37a098fdd526acb3fec644444))
198
+ - set correct default publishable library package json version ([32c032d](https://gitlab.com/rxap/packages/commit/32c032dd47552dc53f5adbc39af0ef2a074beea6))
199
+
200
+ # [16.1.0-dev.46](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.45...@rxap/plugin-angular@16.1.0-dev.46) (2023-10-02)
201
+
202
+ ### Bug Fixes
203
+
204
+ - add cypress configuration after library and application init ([d7fc370](https://gitlab.com/rxap/packages/commit/d7fc370493c66e070ba4bf3bf8a0bf27d18e7094))
205
+ - introduce Is\*Project functions ([0f4a53a](https://gitlab.com/rxap/packages/commit/0f4a53a2a68c7f854d819c005a30957d8b1cb3c6))
206
+ - remove the default angular project files ([90ec712](https://gitlab.com/rxap/packages/commit/90ec712a656379696540db3d7b59a3257db76917))
207
+
208
+ # [16.1.0-dev.45](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.44...@rxap/plugin-angular@16.1.0-dev.45) (2023-10-02)
209
+
210
+ ### Bug Fixes
211
+
212
+ - add missing polyfills default and prevent replacement ([6cda814](https://gitlab.com/rxap/packages/commit/6cda814b4b35b7efd2efce85685c2e25011b8c25))
213
+ - run the update target defaults function independent of any project ([9948b6c](https://gitlab.com/rxap/packages/commit/9948b6c5f158d10021eafa93ec828da731444d3c))
214
+
215
+ # [16.1.0-dev.44](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.43...@rxap/plugin-angular@16.1.0-dev.44) (2023-10-02)
216
+
217
+ ### Bug Fixes
218
+
219
+ - ensure the generate-open-api target is run before building or serving a angular application ([931b545](https://gitlab.com/rxap/packages/commit/931b545e035ef027ea8149672becb086b2c373e8))
220
+
221
+ # [16.1.0-dev.43](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.42...@rxap/plugin-angular@16.1.0-dev.43) (2023-09-28)
222
+
223
+ ### Bug Fixes
224
+
225
+ - resolve font import issues ([1800e50](https://gitlab.com/rxap/packages/commit/1800e50b1abed5403ffc3c0f75e3ba282b2730c7))
226
+
227
+ # [16.1.0-dev.42](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.41...@rxap/plugin-angular@16.1.0-dev.42) (2023-09-28)
228
+
229
+ ### Bug Fixes
230
+
231
+ - improve dynamic theme handling ([7ffd28b](https://gitlab.com/rxap/packages/commit/7ffd28b0a6d86cd6690cac1d750bda104108fb74))
232
+
233
+ # [16.1.0-dev.41](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.40...@rxap/plugin-angular@16.1.0-dev.41) (2023-09-28)
234
+
235
+ ### Features
236
+
237
+ - support dynamic font families and theme density ([a212366](https://gitlab.com/rxap/packages/commit/a21236669cfe89f51b5946cd2d28e72411481dc9))
238
+
239
+ # [16.1.0-dev.40](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.39...@rxap/plugin-angular@16.1.0-dev.40) (2023-09-27)
240
+
241
+ ### Bug Fixes
242
+
243
+ - use CoerceFilesStructure function ([4bc088e](https://gitlab.com/rxap/packages/commit/4bc088eefdc1d2cf8444c395c7d8e648330b7f6f))
244
+
245
+ # [16.1.0-dev.39](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.38...@rxap/plugin-angular@16.1.0-dev.39) (2023-09-22)
246
+
247
+ **Note:** Version bump only for package @rxap/plugin-angular
248
+
249
+ # [16.1.0-dev.38](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.37...@rxap/plugin-angular@16.1.0-dev.38) (2023-09-21)
250
+
251
+ ### Bug Fixes
252
+
253
+ - only add oauth files if oauth flag used ([b187248](https://gitlab.com/rxap/packages/commit/b1872487e2cef343327daff0dd25f9525301db04))
254
+
255
+ # [16.1.0-dev.37](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.36...@rxap/plugin-angular@16.1.0-dev.37) (2023-09-21)
256
+
257
+ ### Bug Fixes
258
+
259
+ - add skip-projects flag ([0f45987](https://gitlab.com/rxap/packages/commit/0f45987bc9dd927b1ede9eb53256125fa0e33674))
260
+
261
+ # [16.1.0-dev.36](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.35...@rxap/plugin-angular@16.1.0-dev.36) (2023-09-20)
262
+
263
+ ### Bug Fixes
264
+
265
+ - add missing options schema ([215c930](https://gitlab.com/rxap/packages/commit/215c930875b28d98d2252c9ad735406c810eb295))
266
+ - add missing package installations ([c12a2d0](https://gitlab.com/rxap/packages/commit/c12a2d01c45a7d4fe33f550e2e40de83f80625ca))
267
+
268
+ # [16.1.0-dev.35](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.34...@rxap/plugin-angular@16.1.0-dev.35) (2023-09-19)
269
+
270
+ ### Bug Fixes
271
+
272
+ - add dialog update service ([984ad4b](https://gitlab.com/rxap/packages/commit/984ad4bd1907ef80f60f0af5ae709baeebd9628b))
273
+
274
+ ### Features
275
+
276
+ - support dynamic app config generation ([06616ad](https://gitlab.com/rxap/packages/commit/06616ad816961b5fc3724992dd2b6b0d7aafc716))
277
+
278
+ # [16.1.0-dev.34](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.33...@rxap/plugin-angular@16.1.0-dev.34) (2023-09-19)
279
+
280
+ ### Bug Fixes
281
+
282
+ - support oauth ([a5c1d0d](https://gitlab.com/rxap/packages/commit/a5c1d0d32a6e874c5ad505e46c6803f451664585))
283
+
284
+ # [16.1.0-dev.33](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.32...@rxap/plugin-angular@16.1.0-dev.33) (2023-09-18)
285
+
286
+ ### Bug Fixes
287
+
288
+ - add default build json ([3b492c1](https://gitlab.com/rxap/packages/commit/3b492c14934fecd8da3215fb7ce72858bc52bcb1))
289
+ - add required scripts for markdown parsing ([3d08acc](https://gitlab.com/rxap/packages/commit/3d08accd00b0c60cbdd9bb294edb8cfe931ab424))
290
+ - install required dependencies ([1eafe46](https://gitlab.com/rxap/packages/commit/1eafe462bcc0797340b52e3853ddffb49a5e584e))
291
+
292
+ # [16.1.0-dev.32](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.31...@rxap/plugin-angular@16.1.0-dev.32) (2023-09-18)
293
+
294
+ ### Bug Fixes
295
+
296
+ - ensure project tags ([f644ed7](https://gitlab.com/rxap/packages/commit/f644ed7191bb89fa6d45ae53ed61c7ff0f36ab8a))
297
+
298
+ ### Features
299
+
300
+ - add localazyReadKey option ([912b428](https://gitlab.com/rxap/packages/commit/912b4288b37adafb1fae7ffe01dc2934baa4fd26))
301
+
302
+ # [16.1.0-dev.31](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.30...@rxap/plugin-angular@16.1.0-dev.31) (2023-09-18)
303
+
304
+ ### Bug Fixes
305
+
306
+ - add service worker files ([073e1a3](https://gitlab.com/rxap/packages/commit/073e1a3a95aa1a56e75b6950ebfe56c8599eb0f0))
307
+ - init index html file ([3bdefa9](https://gitlab.com/rxap/packages/commit/3bdefa98115cc3fc3bbd069227780a8887b6e518))
308
+
309
+ # [16.1.0-dev.30](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.29...@rxap/plugin-angular@16.1.0-dev.30) (2023-09-18)
310
+
311
+ ### Bug Fixes
312
+
313
+ - set initial budget to 2mb ([bbb7bb0](https://gitlab.com/rxap/packages/commit/bbb7bb044319f0c46964cc6322328b9222161080))
314
+
315
+ # [16.1.0-dev.29](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.28...@rxap/plugin-angular@16.1.0-dev.29) (2023-09-18)
316
+
317
+ ### Bug Fixes
318
+
319
+ - create shared folder structure if Dockerfile does not exist ([42f5ab9](https://gitlab.com/rxap/packages/commit/42f5ab9f612ca8f3b6dab49171e551d827816918))
320
+
321
+ # [16.1.0-dev.28](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.27...@rxap/plugin-angular@16.1.0-dev.28) (2023-09-18)
322
+
323
+ ### Bug Fixes
324
+
325
+ - install required dependencies ([fe27dc6](https://gitlab.com/rxap/packages/commit/fe27dc6b7ef65b80cffac5793c8e503dcbbe736a))
326
+
327
+ # [16.1.0-dev.27](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.26...@rxap/plugin-angular@16.1.0-dev.27) (2023-09-18)
328
+
329
+ ### Bug Fixes
330
+
331
+ - install required dependencies ([88274b5](https://gitlab.com/rxap/packages/commit/88274b570bd35c80bd479f4f3b98666b1f60a8fb))
332
+
333
+ # [16.1.0-dev.26](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.25...@rxap/plugin-angular@16.1.0-dev.26) (2023-09-18)
334
+
335
+ ### Bug Fixes
336
+
337
+ - install required dependencies ([1a4b04c](https://gitlab.com/rxap/packages/commit/1a4b04c5b9c7c44a9d57f93b491de9e7ef93685a))
338
+
339
+ # [16.1.0-dev.25](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.24...@rxap/plugin-angular@16.1.0-dev.25) (2023-09-18)
340
+
341
+ ### Bug Fixes
342
+
343
+ - add missing providers ([f526c6c](https://gitlab.com/rxap/packages/commit/f526c6c01354e84fb04bbf1d256c992a6663941e))
344
+
345
+ # [16.1.0-dev.24](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.23...@rxap/plugin-angular@16.1.0-dev.24) (2023-09-15)
346
+
347
+ ### Features
348
+
349
+ - add ProvideEnvironment function ([4574202](https://gitlab.com/rxap/packages/commit/45742021f40ac859408619b796eaaab7ab3c6e49))
350
+
351
+ # [16.1.0-dev.23](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.22...@rxap/plugin-angular@16.1.0-dev.23) (2023-09-14)
352
+
353
+ ### Bug Fixes
354
+
355
+ - set background ([ff59d7b](https://gitlab.com/rxap/packages/commit/ff59d7bcd3731f29e89a8c486127e7450dfd7989))
356
+
357
+ # [16.1.0-dev.22](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.21...@rxap/plugin-angular@16.1.0-dev.22) (2023-09-12)
358
+
359
+ ### Bug Fixes
360
+
361
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
362
+
363
+ # [16.1.0-dev.21](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.20...@rxap/plugin-angular@16.1.0-dev.21) (2023-09-12)
364
+
365
+ ### Bug Fixes
366
+
367
+ - restructure angular shared files ([20cfdb2](https://gitlab.com/rxap/packages/commit/20cfdb268ce02ad10ceafb56ce031e330563c3c2))
368
+ - use language code instead of lang ([d31d77f](https://gitlab.com/rxap/packages/commit/d31d77f3f82680c5ebaf2784061eec9437bc4f3f))
369
+
370
+ # [16.1.0-dev.20](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.19...@rxap/plugin-angular@16.1.0-dev.20) (2023-09-09)
371
+
372
+ ### Bug Fixes
373
+
374
+ - add missing files for localazy if not exists ([d49ffd4](https://gitlab.com/rxap/packages/commit/d49ffd4a90552d9b4b801d86e243be984fbdfb5d))
375
+
376
+ # [16.1.0-dev.19](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.18...@rxap/plugin-angular@16.1.0-dev.19) (2023-09-08)
377
+
378
+ ### Bug Fixes
379
+
380
+ - add missing imports ([a325205](https://gitlab.com/rxap/packages/commit/a325205c43a8936ba37587a991f3b74071cd942a))
381
+ - support open api legacy init ([caea342](https://gitlab.com/rxap/packages/commit/caea3426d68b25e28f2dd85465553fd8af664088))
382
+
383
+ # [16.1.0-dev.18](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.17...@rxap/plugin-angular@16.1.0-dev.18) (2023-09-08)
384
+
385
+ ### Bug Fixes
386
+
387
+ - use new error providers and interceptors ([328ecba](https://gitlab.com/rxap/packages/commit/328ecba3505e22ea71268e33f780eefb3f653f6b))
388
+
389
+ # [16.1.0-dev.17](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.16...@rxap/plugin-angular@16.1.0-dev.17) (2023-09-07)
390
+
391
+ **Note:** Version bump only for package @rxap/plugin-angular
392
+
393
+ # [16.1.0-dev.16](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.15...@rxap/plugin-angular@16.1.0-dev.16) (2023-09-03)
394
+
395
+ **Note:** Version bump only for package @rxap/plugin-angular
396
+
397
+ # [16.1.0-dev.15](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.14...@rxap/plugin-angular@16.1.0-dev.15) (2023-09-03)
398
+
399
+ ### Bug Fixes
400
+
401
+ - add newline after file content ([0d05f70](https://gitlab.com/rxap/packages/commit/0d05f70f8f41208ec25bb0dba570d0f6cb763ac6))
402
+
403
+ ### Features
404
+
405
+ - enforce that every sec entrypoint is include in the tsconfig ([f1e84da](https://gitlab.com/rxap/packages/commit/f1e84da6ceecea92fdca19b69d8a308e1d07dfd7))
406
+
407
+ # [16.1.0-dev.14](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.13...@rxap/plugin-angular@16.1.0-dev.14) (2023-09-03)
408
+
409
+ ### Bug Fixes
410
+
411
+ - adapt to new layout routing concept ([f068b7e](https://gitlab.com/rxap/packages/commit/f068b7ed9261c92082913e5ecd87084633b434a6))
412
+ - add logo.png to application assets if not exists ([c0e7a73](https://gitlab.com/rxap/packages/commit/c0e7a73046bf1af007fa7d24da83d9917451bb35))
413
+ - animation loading issue ([5e241ed](https://gitlab.com/rxap/packages/commit/5e241ed4b9e83575b881f06214255c6f1d2937ce))
414
+ - ensure the localize init polyfill is added ([ee44428](https://gitlab.com/rxap/packages/commit/ee44428279261e6068979f8d6a669ad83cb545ff))
415
+ - if the application is monolithic then open-api is required ([dc2227f](https://gitlab.com/rxap/packages/commit/dc2227f460df2bb27c4e58dd27f70d5ba7eccef1))
416
+ - remove support for open-api client sdk packages ([ace153f](https://gitlab.com/rxap/packages/commit/ace153f977690e7714c3c4110600e2a8916a0d52))
417
+ - split app and layout routes ([1e7c540](https://gitlab.com/rxap/packages/commit/1e7c54055ed8f7fc4fb4dc710097783cab761813))
418
+
419
+ ### Features
420
+
421
+ - add the mdi asset ([4e973c2](https://gitlab.com/rxap/packages/commit/4e973c23866ca1771d428f0382085614da29a801))
422
+ - init application styles ([5963c4d](https://gitlab.com/rxap/packages/commit/5963c4df5f41d023f234abcde444183972e2157f))
423
+
424
+ # [16.1.0-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.12...@rxap/plugin-angular@16.1.0-dev.13) (2023-09-02)
425
+
426
+ ### Features
427
+
428
+ - add cleanup generator ([844d050](https://gitlab.com/rxap/packages/commit/844d0504ea65e41d22f4cd90b2b9c266ee93f489))
429
+ - add init-feature generator ([8925c31](https://gitlab.com/rxap/packages/commit/8925c31b1a2f396b5b5e753a71786b10d45afe57))
430
+ - add support for monolithic angular init ([270e1e2](https://gitlab.com/rxap/packages/commit/270e1e2ce27b427615ee97f5bb72fb5dad1fe095))
431
+
432
+ # [16.1.0-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.11...@rxap/plugin-angular@16.1.0-dev.12) (2023-08-31)
433
+
434
+ ### Bug Fixes
435
+
436
+ - add project ts-morph ([f17725d](https://gitlab.com/rxap/packages/commit/f17725dccf31d3f5fab9087e103e19ad5df43246))
437
+ - ensure overwrite option is passed to sub schematics ([8472aab](https://gitlab.com/rxap/packages/commit/8472aab8814227c851fab9ae4c1b9ec3019d6f4e))
438
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
439
+
440
+ ### Features
441
+
442
+ - coerce default application environments ([6608a7e](https://gitlab.com/rxap/packages/commit/6608a7e8e074ce207a1a405906cc07d0f1e4a8d8))
443
+
444
+ # [16.1.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.10...@rxap/plugin-angular@16.1.0-dev.11) (2023-08-17)
445
+
446
+ ### Reverts
447
+
448
+ - change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
449
+
450
+ # [16.1.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.9...@rxap/plugin-angular@16.1.0-dev.10) (2023-08-16)
451
+
452
+ ### Bug Fixes
453
+
454
+ - change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
455
+
456
+ # [16.1.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.8...@rxap/plugin-angular@16.1.0-dev.9) (2023-08-15)
457
+
458
+ ### Bug Fixes
459
+
460
+ - add docker file option to angular docker targets ([d3abdfa](https://gitlab.com/rxap/packages/commit/d3abdfa312c549ee7a43bba741360b4e7d943268))
461
+
462
+ # [16.1.0-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.7...@rxap/plugin-angular@16.1.0-dev.8) (2023-08-14)
463
+
464
+ ### Bug Fixes
465
+
466
+ - use utility docker image for frontend containers ([bb1ca18](https://gitlab.com/rxap/packages/commit/bb1ca18661b4624de822bf5468ee4d090fc6112c))
467
+
468
+ # [16.1.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.6...@rxap/plugin-angular@16.1.0-dev.7) (2023-08-06)
469
+
470
+ ### Bug Fixes
471
+
472
+ - expose generators as schematics ([679ca36](https://gitlab.com/rxap/packages/commit/679ca36d3712a11e4dc838762bca2f7c471e1e04))
473
+
6
474
  # [16.1.0-dev.6](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.5...@rxap/plugin-angular@16.1.0-dev.6) (2023-08-04)
7
475
 
8
476
  ### Bug Fixes
package/README.md CHANGED
@@ -19,7 +19,7 @@ yarn add @rxap/plugin-angular
19
19
  ```
20
20
  **Install peer dependencies:**
21
21
  ```bash
22
- yarn add @nx/devkit@^16.5.0 @rxap/generator-utilities@^1.1.0-dev.1 @rxap/plugin-localazy@^16.1.0-dev.0 @rxap/plugin-utilities@^16.1.0-dev.3 @rxap/schematics-ts-morph@^16.0.0-dev.6 @rxap/workspace-ts-morph@^0.0.2-dev.0 @rxap/workspace-utilities@^0.1.0-dev.1 nx@^16.5.0 ts-morph@^18.0.0
22
+ yarn add @nx/angular@^16.5.0 @nx/devkit@^16.5.0 @rxap/generator-utilities@^1.1.0-dev.19 @rxap/plugin-localazy@^16.1.0-dev.18 @rxap/plugin-utilities@^16.1.0-dev.22 @rxap/ts-morph@^0.1.0-dev.18 @rxap/utilities@^16.0.0-dev.23 @rxap/workspace-ts-morph@^0.1.0-dev.12 @rxap/workspace-utilities@^0.1.0-dev.24 nx@^16.5.0 ts-morph@^18.0.0 tslib@2.6.2
23
23
  ```
24
24
  **Execute the init generator:**
25
25
  ```bash
@@ -61,6 +61,55 @@ yarn nx g @rxap/plugin-angular:fix-schematic
61
61
  ```bash
62
62
  yarn nx g @rxap/plugin-angular:schematic
63
63
  ```
64
+
65
+ ## init-feature
66
+ > init-feature generator
67
+
68
+ ```bash
69
+ yarn nx g @rxap/plugin-angular:init-feature
70
+ ```
71
+
72
+ ## init
73
+ > init generator
74
+
75
+ ```bash
76
+ yarn nx g @rxap/plugin-angular:init
77
+ ```
78
+
79
+ ## init-application
80
+ > init-application generator
81
+
82
+ ```bash
83
+ yarn nx g @rxap/plugin-angular:init-application
84
+ ```
85
+
86
+ ## init-library
87
+ > init-library generator
88
+
89
+ ```bash
90
+ yarn nx g @rxap/plugin-angular:init-library
91
+ ```
92
+
93
+ ## fix-schematic
94
+ > fix-schematic generator
95
+
96
+ ```bash
97
+ yarn nx g @rxap/plugin-angular:fix-schematic
98
+ ```
99
+
100
+ ## schematic
101
+ > Create a Schematic for a project.
102
+
103
+ ```bash
104
+ yarn nx g @rxap/plugin-angular:schematic
105
+ ```
106
+
107
+ ## init-feature
108
+ > init-feature generator
109
+
110
+ ```bash
111
+ yarn nx g @rxap/plugin-angular:init-feature
112
+ ```
64
113
  # Executors
65
114
 
66
115
  ## tailwind
package/generators.json CHANGED
@@ -24,6 +24,43 @@
24
24
  "factory": "./src/generators/schematic/generator",
25
25
  "schema": "./src/generators/schematic/schema.json",
26
26
  "description": "Create a Schematic for a project."
27
+ },
28
+ "init-feature": {
29
+ "factory": "./src/generators/init-feature/generator",
30
+ "schema": "./src/generators/init-feature/schema.json",
31
+ "description": "init-feature generator"
32
+ }
33
+ },
34
+ "schematics": {
35
+ "init": {
36
+ "factory": "./src/generators/init/index",
37
+ "schema": "./src/generators/init/schema.json",
38
+ "description": "init generator"
39
+ },
40
+ "init-application": {
41
+ "factory": "./src/generators/init-application/index",
42
+ "schema": "./src/generators/init-application/schema.json",
43
+ "description": "init-application generator"
44
+ },
45
+ "init-library": {
46
+ "factory": "./src/generators/init-library/index",
47
+ "schema": "./src/generators/init-library/schema.json",
48
+ "description": "init-library generator"
49
+ },
50
+ "fix-schematic": {
51
+ "factory": "./src/generators/fix-schematic/index",
52
+ "schema": "./src/generators/fix-schematic/schema.json",
53
+ "description": "fix-schematic generator"
54
+ },
55
+ "schematic": {
56
+ "factory": "./src/generators/schematic/index",
57
+ "schema": "./src/generators/schematic/schema.json",
58
+ "description": "Create a Schematic for a project."
59
+ },
60
+ "init-feature": {
61
+ "factory": "./src/generators/init-feature/index",
62
+ "schema": "./src/generators/init-feature/schema.json",
63
+ "description": "init-feature generator"
27
64
  }
28
65
  }
29
66
  }