@rxap/plugin-angular 16.1.0-dev.9 → 16.1.1-dev.0

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