@rxap/plugin-library 16.0.0-dev.9 → 16.0.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.
- package/CHANGELOG.md +277 -0
- package/LICENSE.md +621 -0
- package/README.md +71 -1
- package/generators.json +52 -0
- package/package.json +68 -50
- package/src/executors/check-version/executor.js +7 -2
- package/src/executors/check-version/executor.js.map +1 -1
- package/src/executors/readme/executor.js +124 -66
- package/src/executors/readme/executor.js.map +1 -1
- package/src/executors/run-generator/executor.d.ts +1 -1
- package/src/executors/run-generator/executor.js +69 -9
- package/src/executors/run-generator/executor.js.map +1 -1
- package/src/executors/run-generator/schema.d.ts +1 -0
- package/src/executors/run-generator/schema.json +4 -0
- package/src/generators/expose-as-schematic/generator.d.ts +4 -0
- package/src/generators/expose-as-schematic/generator.js +44 -0
- package/src/generators/expose-as-schematic/generator.js.map +1 -0
- package/src/generators/expose-as-schematic/index.d.ts +2 -0
- package/src/generators/expose-as-schematic/index.js +8 -0
- package/src/generators/expose-as-schematic/index.js.map +1 -0
- package/src/generators/expose-as-schematic/schema.d.ts +3 -0
- package/src/generators/expose-as-schematic/schema.json +16 -0
- package/src/generators/fix-dependencies/generator.js +39 -103
- package/src/generators/fix-dependencies/generator.js.map +1 -1
- package/src/generators/fix-dependencies/index.d.ts +2 -0
- package/src/generators/fix-dependencies/index.js +8 -0
- package/src/generators/fix-dependencies/index.js.map +1 -0
- package/src/generators/index-export/generator.js +13 -4
- package/src/generators/index-export/generator.js.map +1 -1
- package/src/generators/index-export/index.d.ts +2 -0
- package/src/generators/index-export/index.js +8 -0
- package/src/generators/index-export/index.js.map +1 -0
- package/src/generators/init/generator.js +52 -116
- package/src/generators/init/generator.js.map +1 -1
- package/src/generators/init/index.d.ts +2 -0
- package/src/generators/init/index.js +8 -0
- package/src/generators/init/index.js.map +1 -0
- package/src/generators/init/schema.d.ts +2 -0
- package/src/generators/init/schema.json +10 -0
- package/src/generators/init-buildable/generator.d.ts +4 -0
- package/src/generators/init-buildable/generator.js +45 -0
- package/src/generators/init-buildable/generator.js.map +1 -0
- package/src/generators/init-buildable/index.d.ts +2 -0
- package/src/generators/init-buildable/index.js +8 -0
- package/src/generators/init-buildable/index.js.map +1 -0
- package/src/generators/init-buildable/schema.d.ts +5 -0
- package/src/generators/init-buildable/schema.json +26 -0
- package/src/generators/init-plugin/generator.js +36 -20
- package/src/generators/init-plugin/generator.js.map +1 -1
- package/src/generators/init-plugin/index.d.ts +2 -0
- package/src/generators/init-plugin/index.js +8 -0
- package/src/generators/init-plugin/index.js.map +1 -0
- package/src/generators/init-plugin/schema.d.ts +2 -0
- package/src/generators/init-plugin/schema.json +10 -0
- package/src/generators/init-publishable/generator.d.ts +4 -0
- package/src/generators/init-publishable/generator.js +126 -0
- package/src/generators/init-publishable/generator.js.map +1 -0
- package/src/generators/init-publishable/index.d.ts +2 -0
- package/src/generators/init-publishable/index.js +8 -0
- package/src/generators/init-publishable/index.js.map +1 -0
- package/src/generators/init-publishable/schema.d.ts +5 -0
- package/src/generators/init-publishable/schema.json +26 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +3 -1
- package/src/index.js.map +1 -1
- /package/src/generators/{init → init-publishable}/files/README.md.handlebars +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,283 @@
|
|
|
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.0.1-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0...@rxap/plugin-library@16.0.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.0.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.43...@rxap/plugin-library@16.0.0) (2024-02-07)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @rxap/plugin-library
|
|
15
|
+
|
|
16
|
+
# [16.0.0-dev.43](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.42...@rxap/plugin-library@16.0.0-dev.43) (2024-02-05)
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
- ensure the packageJson name is correct ([37dee1a](https://gitlab.com/rxap/packages/commit/37dee1a28c650673d980a1a37d6b82b117ac7933))
|
|
21
|
+
- ensure the packageJson version is correct ([635ff0e](https://gitlab.com/rxap/packages/commit/635ff0e68d571943e0e6ee40ec72627853734628))
|
|
22
|
+
|
|
23
|
+
# [16.0.0-dev.42](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.41...@rxap/plugin-library@16.0.0-dev.42) (2023-11-16)
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- support custom inline options ([468985a](https://gitlab.com/rxap/packages/commit/468985a004993bb4dcbf6dd6a55aae973c509935))
|
|
28
|
+
|
|
29
|
+
# [16.0.0-dev.41](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.40...@rxap/plugin-library@16.0.0-dev.41) (2023-10-16)
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
- use utility CreateProject function to create a ts-morph Project instance ([78b308f](https://gitlab.com/rxap/packages/commit/78b308fd10747616c7c7f27e81501a4ad5052a77))
|
|
34
|
+
|
|
35
|
+
# [16.0.0-dev.40](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.39...@rxap/plugin-library@16.0.0-dev.40) (2023-10-12)
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
- remove package json update targets from cacheable operations ([6dd372d](https://gitlab.com/rxap/packages/commit/6dd372d0ed9a182d5b99d413a35c1dc29513fc77))
|
|
40
|
+
|
|
41
|
+
# [16.0.0-dev.39](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.38...@rxap/plugin-library@16.0.0-dev.39) (2023-10-11)
|
|
42
|
+
|
|
43
|
+
**Note:** Version bump only for package @rxap/plugin-library
|
|
44
|
+
|
|
45
|
+
# [16.0.0-dev.38](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.37...@rxap/plugin-library@16.0.0-dev.38) (2023-10-11)
|
|
46
|
+
|
|
47
|
+
**Note:** Version bump only for package @rxap/plugin-library
|
|
48
|
+
|
|
49
|
+
# [16.0.0-dev.37](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.36...@rxap/plugin-library@16.0.0-dev.37) (2023-10-11)
|
|
50
|
+
|
|
51
|
+
### Bug Fixes
|
|
52
|
+
|
|
53
|
+
- ensure overwrite option is respected ([672c315](https://gitlab.com/rxap/packages/commit/672c3152403ae577fb8d4d34e060971d2e53d0af))
|
|
54
|
+
|
|
55
|
+
# [16.0.0-dev.36](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.7...@rxap/plugin-library@16.0.0-dev.36) (2023-10-11)
|
|
56
|
+
|
|
57
|
+
### Bug Fixes
|
|
58
|
+
|
|
59
|
+
- add expose-as-schematic to plugin projects with generators ([32b28ae](https://gitlab.com/rxap/packages/commit/32b28ae005e3e73d96f0ae77b457b35f1a5721f9))
|
|
60
|
+
- add licence file to publishable packages ([d7de1cb](https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6))
|
|
61
|
+
- add missing regex flags ([54fad73](https://gitlab.com/rxap/packages/commit/54fad735b55107c04ba45ae9511bf52c4a309cec))
|
|
62
|
+
- add skip-projects flag ([e1f31ed](https://gitlab.com/rxap/packages/commit/e1f31ed837646f605ced82a52749e62af07ba939))
|
|
63
|
+
- add the index-export target to all non plugin/schematic/generator project targets ([6d1c533](https://gitlab.com/rxap/packages/commit/6d1c533aee590907e23160d4d54ad04c4c13e4b2))
|
|
64
|
+
- array parameters escape ([72925cd](https://gitlab.com/rxap/packages/commit/72925cd4b08344385cab3210221b7b3af43e187d))
|
|
65
|
+
- call the schematic utility script if rxap repository ([da3dc46](https://gitlab.com/rxap/packages/commit/da3dc46f3193babb04a90e8c4a5a538f2e9ea6e3))
|
|
66
|
+
- change from commonjs to es2022 ([cf675a7](https://gitlab.com/rxap/packages/commit/cf675a7254de9ce4b269264df59794dd42fcbd8b))
|
|
67
|
+
- check if homepage is set prevent ref by null ([1b2898e](https://gitlab.com/rxap/packages/commit/1b2898e54b403c9a250129f18e9084bc3f5e6b62))
|
|
68
|
+
- check if the LICENSE file exists before access the file ([f14b7e3](https://gitlab.com/rxap/packages/commit/f14b7e3d55e153b5cc2b960a0ee3f5585a96ae9f))
|
|
69
|
+
- **check-version:** exclude pre release suffix in comparison ([083f96f](https://gitlab.com/rxap/packages/commit/083f96fe71601da7fcededf378fbaf0fd667e1cc))
|
|
70
|
+
- cleanup target version ([6627983](https://gitlab.com/rxap/packages/commit/6627983dbe314fd49484b925515bbb09aa1fd606))
|
|
71
|
+
- coerce the index-export default target options ([fc9d188](https://gitlab.com/rxap/packages/commit/fc9d188dd16a910ce2d503b6501bbe3ec186cbf5))
|
|
72
|
+
- create publish directory with relative output path ([08884cd](https://gitlab.com/rxap/packages/commit/08884cd41483fc466db7e6f934a233f0ea0c654d))
|
|
73
|
+
- enforce that the production configuration is the default configuration ([00ac30e](https://gitlab.com/rxap/packages/commit/00ac30e65dbe1008bff6d4f149631405fc81c200))
|
|
74
|
+
- ensure all required cacheable operations are defined ([d9ded9c](https://gitlab.com/rxap/packages/commit/d9ded9c5e150d9781ce490ad7ac292194d09bf2a))
|
|
75
|
+
- ensure fix-dependencies for dependencies is run first ([6560021](https://gitlab.com/rxap/packages/commit/6560021bc93d8657e97b363fbee20a0ca64df7b3))
|
|
76
|
+
- ensure index-export is run before build target ([5ea6ba8](https://gitlab.com/rxap/packages/commit/5ea6ba85add4ce96af04b3f5da1e8e6e25cdbbb6))
|
|
77
|
+
- ensure new line ([5faca82](https://gitlab.com/rxap/packages/commit/5faca824bd3eb43e61ed06ff004bb6b2f15669e0))
|
|
78
|
+
- ensure overwrite option is passed to sub schematics ([0c8a19b](https://gitlab.com/rxap/packages/commit/0c8a19b5166f804aa335f739a00a5415bd97f61a))
|
|
79
|
+
- ensure the project name is not included in the project tag list ([46d4479](https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2))
|
|
80
|
+
- exclude .cy.ts files ([b6a0989](https://gitlab.com/rxap/packages/commit/b6a09891e5178c306824bb9671125604625b29f9))
|
|
81
|
+
- expose generators as schematics ([8a58d07](https://gitlab.com/rxap/packages/commit/8a58d07c2f1dcfff75e724a418d7c3bddb2d0bbc))
|
|
82
|
+
- generate index file for non angular projects ([00ee701](https://gitlab.com/rxap/packages/commit/00ee701811805a38ea6a71284a94b39b02e8a3a4))
|
|
83
|
+
- generate readme with peer dependencies to install ([27c2cd7](https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9))
|
|
84
|
+
- handle readme generator execution errors ([7c2762d](https://gitlab.com/rxap/packages/commit/7c2762da753edd28210e3e35bef5048964f5beea))
|
|
85
|
+
- ignore express and axios packages ([f159354](https://gitlab.com/rxap/packages/commit/f159354d89a2f28d6adefdeab59e2e592c612204))
|
|
86
|
+
- ignore projects that have no package.json ([427f3f3](https://gitlab.com/rxap/packages/commit/427f3f3f6933dab1ca211702149f2746f0ac6fe3))
|
|
87
|
+
- **init:** use init plugin generator for plugin projects ([e9417c2](https://gitlab.com/rxap/packages/commit/e9417c2b500a08e65f34860d42379c64a16545b9))
|
|
88
|
+
- introduce Is\*Project functions ([3c9f251](https://gitlab.com/rxap/packages/commit/3c9f251f1d7be46ca366171e79e86ef2764fa3b0))
|
|
89
|
+
- only include file if has export statement ([bf33058](https://gitlab.com/rxap/packages/commit/bf33058e3bcf9ff9479cd3db333d8703157b3bf9))
|
|
90
|
+
- peer dependency issue ([ee95415](https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a))
|
|
91
|
+
- remove nx dependency ([b2b98b0](https://gitlab.com/rxap/packages/commit/b2b98b01438e9439f9743fb27629c7e96072df45))
|
|
92
|
+
- support schema with $ref and allOf properties ([486ed06](https://gitlab.com/rxap/packages/commit/486ed06fb3f9aa33b68a74e024e449e628afd585))
|
|
93
|
+
- update default root project name ([71908f4](https://gitlab.com/rxap/packages/commit/71908f43258a3cb1aa0c7cbf1fbf17c5a544a57b))
|
|
94
|
+
- use absolute path to access files ([063676e](https://gitlab.com/rxap/packages/commit/063676e3a1f6061c9f3284f79e6ca8091242c0c7))
|
|
95
|
+
- use UpdatePackageJson utility function ([1b00ccf](https://gitlab.com/rxap/packages/commit/1b00ccf4608cf5b56b8075497e7a89bdb98fcb59))
|
|
96
|
+
- use utility function to set targets and target defaults ([00b5e6a](https://gitlab.com/rxap/packages/commit/00b5e6acd086c72ea99272ed6bb3fd094d7bb654))
|
|
97
|
+
|
|
98
|
+
### Features
|
|
99
|
+
|
|
100
|
+
- add init-buildable and init-publishable generator ([90c6f9a](https://gitlab.com/rxap/packages/commit/90c6f9a4d238539ded4e3ed4007793ef835127ab))
|
|
101
|
+
- add project to package name mapping utilities ([a0760db](https://gitlab.com/rxap/packages/commit/a0760db47705928ca94803bb6868b9310a6a5b5f))
|
|
102
|
+
- **executor:** add check version ([22de28a](https://gitlab.com/rxap/packages/commit/22de28a9802b2d21469723cfdf18ae4e04df718e))
|
|
103
|
+
- **generator:** add init-plugin ([c381500](https://gitlab.com/rxap/packages/commit/c38150066b5a63ba70371913d7f729637c19ce80))
|
|
104
|
+
- **init:** execute nest init generator if project is for nestjs ([809d428](https://gitlab.com/rxap/packages/commit/809d4280f83bb3127eca044b0e064e5c66ea221b))
|
|
105
|
+
- support angular library entrypoints ([f74241d](https://gitlab.com/rxap/packages/commit/f74241de483eaed44241a8e4e2a6268036317851))
|
|
106
|
+
- support string interpolation ([3ebbdd9](https://gitlab.com/rxap/packages/commit/3ebbdd98ec87eee7e7fe6af68fd287ad083619cb))
|
|
107
|
+
|
|
108
|
+
### Reverts
|
|
109
|
+
|
|
110
|
+
- change from commonjs to es2022 ([50eca61](https://gitlab.com/rxap/packages/commit/50eca61e9a89388d1cfeefb8b1029b302b6f307e))
|
|
111
|
+
|
|
112
|
+
# [16.0.0-dev.35](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.34...@rxap/plugin-library@16.0.0-dev.35) (2023-10-09)
|
|
113
|
+
|
|
114
|
+
### Bug Fixes
|
|
115
|
+
|
|
116
|
+
- add missing regex flags ([da557ea](https://gitlab.com/rxap/packages/commit/da557eaf8edea23963fb5aa5e9f5b54baddef41c))
|
|
117
|
+
|
|
118
|
+
# [16.0.0-dev.34](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.33...@rxap/plugin-library@16.0.0-dev.34) (2023-10-09)
|
|
119
|
+
|
|
120
|
+
### Bug Fixes
|
|
121
|
+
|
|
122
|
+
- only include file if has export statement ([acab338](https://gitlab.com/rxap/packages/commit/acab3385744d9bfbf4c6ce1e1423c8ef8f87c46a))
|
|
123
|
+
|
|
124
|
+
# [16.0.0-dev.33](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.32...@rxap/plugin-library@16.0.0-dev.33) (2023-10-08)
|
|
125
|
+
|
|
126
|
+
### Bug Fixes
|
|
127
|
+
|
|
128
|
+
- ensure index-export is run before build target ([5008aeb](https://gitlab.com/rxap/packages/commit/5008aeb3847cb3ff2b248c83685153abc4a4ffcb))
|
|
129
|
+
|
|
130
|
+
# [16.0.0-dev.32](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.31...@rxap/plugin-library@16.0.0-dev.32) (2023-10-03)
|
|
131
|
+
|
|
132
|
+
### Bug Fixes
|
|
133
|
+
|
|
134
|
+
- ensure all required cacheable operations are defined ([49a9199](https://gitlab.com/rxap/packages/commit/49a9199cd2592cf8550650dc17f9995e4f6727f8))
|
|
135
|
+
|
|
136
|
+
# [16.0.0-dev.31](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.30...@rxap/plugin-library@16.0.0-dev.31) (2023-10-02)
|
|
137
|
+
|
|
138
|
+
### Bug Fixes
|
|
139
|
+
|
|
140
|
+
- cleanup target version ([06558eb](https://gitlab.com/rxap/packages/commit/06558eb200e620dfb6ea217885520c6561cd1c25))
|
|
141
|
+
- coerce the index-export default target options ([1de131c](https://gitlab.com/rxap/packages/commit/1de131c42dfa133dc448d0d1a300d49e1ae9b7cc))
|
|
142
|
+
|
|
143
|
+
# [16.0.0-dev.30](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.29...@rxap/plugin-library@16.0.0-dev.30) (2023-10-02)
|
|
144
|
+
|
|
145
|
+
### Bug Fixes
|
|
146
|
+
|
|
147
|
+
- add the index-export target to all non plugin/schematic/generator project targets ([efaac2e](https://gitlab.com/rxap/packages/commit/efaac2e7aca03589c1b80559b51eb08297f6e933))
|
|
148
|
+
- check if the LICENSE file exists before access the file ([de5bb8e](https://gitlab.com/rxap/packages/commit/de5bb8ec6ca66c4bfc663152f26b98b77273d30a))
|
|
149
|
+
- introduce Is\*Project functions ([0f4a53a](https://gitlab.com/rxap/packages/commit/0f4a53a2a68c7f854d819c005a30957d8b1cb3c6))
|
|
150
|
+
|
|
151
|
+
# [16.0.0-dev.29](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.28...@rxap/plugin-library@16.0.0-dev.29) (2023-10-02)
|
|
152
|
+
|
|
153
|
+
### Bug Fixes
|
|
154
|
+
|
|
155
|
+
- handle readme generator execution errors ([a5c5204](https://gitlab.com/rxap/packages/commit/a5c5204b6e2bcd39db3d868e1bfa5955b0570dbf))
|
|
156
|
+
- support schema with $ref and allOf properties ([c8a1640](https://gitlab.com/rxap/packages/commit/c8a164039443b37e2c0a6b2d1dceb1bfa6312b97))
|
|
157
|
+
|
|
158
|
+
# [16.0.0-dev.28](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.27...@rxap/plugin-library@16.0.0-dev.28) (2023-09-21)
|
|
159
|
+
|
|
160
|
+
### Bug Fixes
|
|
161
|
+
|
|
162
|
+
- add skip-projects flag ([0f45987](https://gitlab.com/rxap/packages/commit/0f45987bc9dd927b1ede9eb53256125fa0e33674))
|
|
163
|
+
|
|
164
|
+
# [16.0.0-dev.27](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.26...@rxap/plugin-library@16.0.0-dev.27) (2023-09-19)
|
|
165
|
+
|
|
166
|
+
### Bug Fixes
|
|
167
|
+
|
|
168
|
+
- update default root project name ([85e724a](https://gitlab.com/rxap/packages/commit/85e724a7f08bcffdd4637311fe9560a674672a8f))
|
|
169
|
+
|
|
170
|
+
# [16.0.0-dev.26](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.25...@rxap/plugin-library@16.0.0-dev.26) (2023-09-13)
|
|
171
|
+
|
|
172
|
+
### Bug Fixes
|
|
173
|
+
|
|
174
|
+
- array parameters escape ([4fd79fe](https://gitlab.com/rxap/packages/commit/4fd79feeafdfece921f6ad9e32269cca882d04f0))
|
|
175
|
+
|
|
176
|
+
# [16.0.0-dev.25](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.24...@rxap/plugin-library@16.0.0-dev.25) (2023-09-12)
|
|
177
|
+
|
|
178
|
+
### Bug Fixes
|
|
179
|
+
|
|
180
|
+
- peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
|
|
181
|
+
|
|
182
|
+
# [16.0.0-dev.24](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.23...@rxap/plugin-library@16.0.0-dev.24) (2023-09-12)
|
|
183
|
+
|
|
184
|
+
### Bug Fixes
|
|
185
|
+
|
|
186
|
+
- use UpdatePackageJson utility function ([6e0e735](https://gitlab.com/rxap/packages/commit/6e0e735797462edd447bc1c78c804829c6f3c16f))
|
|
187
|
+
|
|
188
|
+
# [16.0.0-dev.23](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.22...@rxap/plugin-library@16.0.0-dev.23) (2023-09-07)
|
|
189
|
+
|
|
190
|
+
**Note:** Version bump only for package @rxap/plugin-library
|
|
191
|
+
|
|
192
|
+
# [16.0.0-dev.22](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.21...@rxap/plugin-library@16.0.0-dev.22) (2023-09-03)
|
|
193
|
+
|
|
194
|
+
**Note:** Version bump only for package @rxap/plugin-library
|
|
195
|
+
|
|
196
|
+
# [16.0.0-dev.21](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.20...@rxap/plugin-library@16.0.0-dev.21) (2023-09-03)
|
|
197
|
+
|
|
198
|
+
### Features
|
|
199
|
+
|
|
200
|
+
- support string interpolation ([dfcdc79](https://gitlab.com/rxap/packages/commit/dfcdc798f8856dae07b2b7704c60dd145d44a65a))
|
|
201
|
+
|
|
202
|
+
# [16.0.0-dev.20](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.19...@rxap/plugin-library@16.0.0-dev.20) (2023-09-02)
|
|
203
|
+
|
|
204
|
+
### Bug Fixes
|
|
205
|
+
|
|
206
|
+
- generate index file for non angular projects ([5d88306](https://gitlab.com/rxap/packages/commit/5d8830611d751c3f17eb18a2e5db9aa80e3d2312))
|
|
207
|
+
|
|
208
|
+
### Features
|
|
209
|
+
|
|
210
|
+
- support angular library entrypoints ([7718326](https://gitlab.com/rxap/packages/commit/7718326464e1971d6b9463a6ae611a279ba4c1a7))
|
|
211
|
+
|
|
212
|
+
# [16.0.0-dev.19](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.18...@rxap/plugin-library@16.0.0-dev.19) (2023-08-31)
|
|
213
|
+
|
|
214
|
+
### Bug Fixes
|
|
215
|
+
|
|
216
|
+
- ensure overwrite option is passed to sub schematics ([8472aab](https://gitlab.com/rxap/packages/commit/8472aab8814227c851fab9ae4c1b9ec3019d6f4e))
|
|
217
|
+
- ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
|
|
218
|
+
|
|
219
|
+
# [16.0.0-dev.18](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.17...@rxap/plugin-library@16.0.0-dev.18) (2023-08-17)
|
|
220
|
+
|
|
221
|
+
### Reverts
|
|
222
|
+
|
|
223
|
+
- change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
|
|
224
|
+
|
|
225
|
+
# [16.0.0-dev.17](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.16...@rxap/plugin-library@16.0.0-dev.17) (2023-08-16)
|
|
226
|
+
|
|
227
|
+
### Bug Fixes
|
|
228
|
+
|
|
229
|
+
- change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
|
|
230
|
+
|
|
231
|
+
# [16.0.0-dev.16](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.15...@rxap/plugin-library@16.0.0-dev.16) (2023-08-14)
|
|
232
|
+
|
|
233
|
+
### Bug Fixes
|
|
234
|
+
|
|
235
|
+
- exclude .cy.ts files ([bbaf974](https://gitlab.com/rxap/packages/commit/bbaf97402207b09744fae8b9fb9c5c88f3cf4759))
|
|
236
|
+
|
|
237
|
+
# [16.0.0-dev.15](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.14...@rxap/plugin-library@16.0.0-dev.15) (2023-08-06)
|
|
238
|
+
|
|
239
|
+
### Bug Fixes
|
|
240
|
+
|
|
241
|
+
- add expose-as-schematic to plugin projects with generators ([6c9fac8](https://gitlab.com/rxap/packages/commit/6c9fac892950e2942e7994673c35987b9b1b6fe7))
|
|
242
|
+
- ensure new line ([2db00f1](https://gitlab.com/rxap/packages/commit/2db00f115cf59e0e89fa53c70426b3e7cb829461))
|
|
243
|
+
- expose generators as schematics ([679ca36](https://gitlab.com/rxap/packages/commit/679ca36d3712a11e4dc838762bca2f7c471e1e04))
|
|
244
|
+
|
|
245
|
+
# [16.0.0-dev.14](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.13...@rxap/plugin-library@16.0.0-dev.14) (2023-08-05)
|
|
246
|
+
|
|
247
|
+
### Bug Fixes
|
|
248
|
+
|
|
249
|
+
- check if homepage is set prevent ref by null ([6e86439](https://gitlab.com/rxap/packages/commit/6e8643966ff79d3f329a9a2e73b39a7e27c55849))
|
|
250
|
+
|
|
251
|
+
# [16.0.0-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.12...@rxap/plugin-library@16.0.0-dev.13) (2023-08-04)
|
|
252
|
+
|
|
253
|
+
### Bug Fixes
|
|
254
|
+
|
|
255
|
+
- add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
|
|
256
|
+
- call the schematic utility script if rxap repository ([6497a76](https://gitlab.com/rxap/packages/commit/6497a7680503cf0aab38e5de7db813c0733d191c))
|
|
257
|
+
- enforce that the production configuration is the default configuration ([6e9c3b7](https://gitlab.com/rxap/packages/commit/6e9c3b7a58e92bcb5a1b9b772a34153b44acc8f9))
|
|
258
|
+
|
|
259
|
+
# [16.0.0-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.11...@rxap/plugin-library@16.0.0-dev.12) (2023-08-04)
|
|
260
|
+
|
|
261
|
+
### Bug Fixes
|
|
262
|
+
|
|
263
|
+
- remove nx dependency ([5cc2200](https://gitlab.com/rxap/packages/commit/5cc2200ca3f12ef39bb959f98730975978b5194e))
|
|
264
|
+
|
|
265
|
+
### Features
|
|
266
|
+
|
|
267
|
+
- add init-buildable and init-publishable generator ([b4ca2ba](https://gitlab.com/rxap/packages/commit/b4ca2ba9ff370be4e9c6d0948f8c62635c8ffac3))
|
|
268
|
+
|
|
269
|
+
# [16.0.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.10...@rxap/plugin-library@16.0.0-dev.11) (2023-08-03)
|
|
270
|
+
|
|
271
|
+
### Bug Fixes
|
|
272
|
+
|
|
273
|
+
- ensure fix-dependencies for dependencies is run first ([c01d930](https://gitlab.com/rxap/packages/commit/c01d93095a05877094e701ac385ec7521335a6a4))
|
|
274
|
+
- use absolute path to access files ([32323ab](https://gitlab.com/rxap/packages/commit/32323ab900da408dcd6ae05dc12e562feff798f9))
|
|
275
|
+
- use utility function to set targets and target defaults ([5914d7e](https://gitlab.com/rxap/packages/commit/5914d7efae28b891044da79f02f077d7b2398d2b))
|
|
276
|
+
|
|
277
|
+
# [16.0.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.9...@rxap/plugin-library@16.0.0-dev.10) (2023-08-03)
|
|
278
|
+
|
|
279
|
+
### Features
|
|
280
|
+
|
|
281
|
+
- add project to package name mapping utilities ([86ce9ab](https://gitlab.com/rxap/packages/commit/86ce9abfff3cba758c1f12667002953e5f5f4464))
|
|
282
|
+
|
|
6
283
|
# [16.0.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.8...@rxap/plugin-library@16.0.0-dev.9) (2023-08-01)
|
|
7
284
|
|
|
8
285
|
### Bug Fixes
|