@rxap/plugin-library 16.0.0-dev.3 → 16.0.0-dev.31

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 (164) hide show
  1. package/CHANGELOG.md +197 -141
  2. package/{LICENSE → LICENSE.md} +3 -12
  3. package/README.md +143 -106
  4. package/executors.json +29 -0
  5. package/generators.json +76 -0
  6. package/package.json +92 -41
  7. package/src/executors/check-version/executor.d.ts +5 -0
  8. package/src/executors/check-version/executor.js +37 -0
  9. package/src/executors/check-version/executor.js.map +1 -0
  10. package/src/executors/check-version/schema.d.ts +3 -0
  11. package/src/executors/check-version/schema.json +16 -0
  12. package/src/executors/readme/executor.d.ts +5 -0
  13. package/src/executors/readme/executor.js +199 -0
  14. package/src/executors/readme/executor.js.map +1 -0
  15. package/src/executors/readme/schema.d.ts +1 -0
  16. package/src/{builders/update-package-group → executors/readme}/schema.json +2 -3
  17. package/src/executors/run-generator/executor.d.ts +5 -0
  18. package/src/executors/run-generator/executor.js +84 -0
  19. package/src/executors/run-generator/executor.js.map +1 -0
  20. package/src/executors/run-generator/schema.d.ts +7 -0
  21. package/src/executors/run-generator/schema.json +31 -0
  22. package/src/executors/update-dependencies/executor.d.ts +5 -0
  23. package/src/executors/update-dependencies/executor.js +32 -0
  24. package/src/executors/update-dependencies/executor.js.map +1 -0
  25. package/src/executors/update-dependencies/schema.d.ts +1 -0
  26. package/src/executors/update-dependencies/schema.json +9 -0
  27. package/src/executors/update-package-group/executor.d.ts +5 -0
  28. package/src/executors/update-package-group/executor.js +45 -0
  29. package/src/executors/update-package-group/executor.js.map +1 -0
  30. package/src/executors/update-package-group/schema.d.ts +1 -0
  31. package/src/executors/update-package-group/schema.json +9 -0
  32. package/src/generators/expose-as-schematic/generator.d.ts +4 -0
  33. package/src/generators/expose-as-schematic/generator.js +44 -0
  34. package/src/generators/expose-as-schematic/generator.js.map +1 -0
  35. package/src/generators/expose-as-schematic/index.d.ts +2 -0
  36. package/src/generators/expose-as-schematic/index.js +8 -0
  37. package/src/generators/expose-as-schematic/index.js.map +1 -0
  38. package/src/generators/expose-as-schematic/schema.d.ts +3 -0
  39. package/src/generators/expose-as-schematic/schema.json +16 -0
  40. package/src/generators/fix-dependencies/generator.d.ts +27 -0
  41. package/src/generators/fix-dependencies/generator.js +501 -0
  42. package/src/generators/fix-dependencies/generator.js.map +1 -0
  43. package/src/generators/fix-dependencies/index.d.ts +2 -0
  44. package/src/generators/fix-dependencies/index.js +8 -0
  45. package/src/generators/fix-dependencies/index.js.map +1 -0
  46. package/src/generators/fix-dependencies/schema.d.ts +8 -0
  47. package/src/generators/fix-dependencies/schema.json +31 -0
  48. package/src/generators/index-export/generator.d.ts +4 -0
  49. package/src/generators/index-export/generator.js +78 -0
  50. package/src/generators/index-export/generator.js.map +1 -0
  51. package/src/generators/index-export/index.d.ts +2 -0
  52. package/src/generators/index-export/index.js +8 -0
  53. package/src/generators/index-export/index.js.map +1 -0
  54. package/src/generators/index-export/schema.d.ts +3 -0
  55. package/src/generators/index-export/schema.json +16 -0
  56. package/src/generators/init/generator.d.ts +4 -0
  57. package/src/generators/init/generator.js +90 -0
  58. package/src/generators/init/generator.js.map +1 -0
  59. package/src/generators/init/index.d.ts +2 -0
  60. package/src/generators/init/index.js +8 -0
  61. package/src/generators/init/index.js.map +1 -0
  62. package/src/generators/init/schema.d.ts +5 -0
  63. package/src/generators/init/schema.json +26 -0
  64. package/src/generators/init-buildable/generator.d.ts +4 -0
  65. package/src/generators/init-buildable/generator.js +45 -0
  66. package/src/generators/init-buildable/generator.js.map +1 -0
  67. package/src/generators/init-buildable/index.d.ts +2 -0
  68. package/src/generators/init-buildable/index.js +8 -0
  69. package/src/generators/init-buildable/index.js.map +1 -0
  70. package/src/generators/init-buildable/schema.d.ts +5 -0
  71. package/src/generators/init-buildable/schema.json +26 -0
  72. package/src/generators/init-plugin/generator.d.ts +4 -0
  73. package/src/generators/init-plugin/generator.js +58 -0
  74. package/src/generators/init-plugin/generator.js.map +1 -0
  75. package/src/generators/init-plugin/index.d.ts +2 -0
  76. package/src/generators/init-plugin/index.js +8 -0
  77. package/src/generators/init-plugin/index.js.map +1 -0
  78. package/src/generators/init-plugin/schema.d.ts +5 -0
  79. package/src/generators/init-plugin/schema.json +26 -0
  80. package/src/generators/init-publishable/files/README.md.handlebars +115 -0
  81. package/src/generators/init-publishable/generator.d.ts +4 -0
  82. package/src/generators/init-publishable/generator.js +106 -0
  83. package/src/generators/init-publishable/generator.js.map +1 -0
  84. package/src/generators/init-publishable/index.d.ts +2 -0
  85. package/src/generators/init-publishable/index.js +8 -0
  86. package/src/generators/init-publishable/index.js.map +1 -0
  87. package/src/generators/init-publishable/schema.d.ts +5 -0
  88. package/src/generators/init-publishable/schema.json +26 -0
  89. package/src/index.d.ts +2 -1
  90. package/src/index.js +5 -0
  91. package/src/index.js.map +1 -1
  92. package/builders.json +0 -20
  93. package/collection.json +0 -32
  94. package/migration.json +0 -4
  95. package/src/builders/build-schematics/builder.d.ts +0 -13
  96. package/src/builders/build-schematics/builder.js +0 -84
  97. package/src/builders/build-schematics/builder.js.map +0 -1
  98. package/src/builders/build-schematics/schema.json +0 -78
  99. package/src/builders/update-package-group/builder.d.ts +0 -19
  100. package/src/builders/update-package-group/builder.js +0 -89
  101. package/src/builders/update-package-group/builder.js.map +0 -1
  102. package/src/builders/update-package-group/read-file.d.ts +0 -7
  103. package/src/builders/update-package-group/read-file.js +0 -11
  104. package/src/builders/update-package-group/read-file.js.map +0 -1
  105. package/src/builders/update-package-group/write-file.d.ts +0 -5
  106. package/src/builders/update-package-group/write-file.js +0 -11
  107. package/src/builders/update-package-group/write-file.js.map +0 -1
  108. package/src/builders/update-peer-dependencies/builder.d.ts +0 -40
  109. package/src/builders/update-peer-dependencies/builder.js +0 -293
  110. package/src/builders/update-peer-dependencies/builder.js.map +0 -1
  111. package/src/builders/update-peer-dependencies/schema.json +0 -33
  112. package/src/builders/utils/assets.d.ts +0 -14
  113. package/src/builders/utils/assets.js +0 -54
  114. package/src/builders/utils/assets.js.map +0 -1
  115. package/src/builders/utils/compile-typescript-files.d.ts +0 -13
  116. package/src/builders/utils/compile-typescript-files.js +0 -56
  117. package/src/builders/utils/compile-typescript-files.js.map +0 -1
  118. package/src/builders/utils/equals.d.ts +0 -1
  119. package/src/builders/utils/equals.js +0 -200
  120. package/src/builders/utils/equals.js.map +0 -1
  121. package/src/builders/utils/unique.d.ts +0 -1
  122. package/src/builders/utils/unique.js +0 -8
  123. package/src/builders/utils/unique.js.map +0 -1
  124. package/src/schematics/config/index.d.ts +0 -3
  125. package/src/schematics/config/index.js +0 -17
  126. package/src/schematics/config/index.js.map +0 -1
  127. package/src/schematics/config/schema.json +0 -50
  128. package/src/schematics/config-schematics/coerce-builders-json.d.ts +0 -2
  129. package/src/schematics/config-schematics/coerce-builders-json.js +0 -23
  130. package/src/schematics/config-schematics/coerce-builders-json.js.map +0 -1
  131. package/src/schematics/config-schematics/coerce-builders.d.ts +0 -1
  132. package/src/schematics/config-schematics/coerce-builders.js +0 -11
  133. package/src/schematics/config-schematics/coerce-builders.js.map +0 -1
  134. package/src/schematics/config-schematics/coerce-collection-json.d.ts +0 -2
  135. package/src/schematics/config-schematics/coerce-collection-json.js +0 -23
  136. package/src/schematics/config-schematics/coerce-collection-json.js.map +0 -1
  137. package/src/schematics/config-schematics/coerce-migration-json.d.ts +0 -2
  138. package/src/schematics/config-schematics/coerce-migration-json.js +0 -23
  139. package/src/schematics/config-schematics/coerce-migration-json.js.map +0 -1
  140. package/src/schematics/config-schematics/coerce-ng-update.d.ts +0 -1
  141. package/src/schematics/config-schematics/coerce-ng-update.js +0 -21
  142. package/src/schematics/config-schematics/coerce-ng-update.js.map +0 -1
  143. package/src/schematics/config-schematics/coerce-schematics.d.ts +0 -1
  144. package/src/schematics/config-schematics/coerce-schematics.js +0 -11
  145. package/src/schematics/config-schematics/coerce-schematics.js.map +0 -1
  146. package/src/schematics/config-schematics/index.d.ts +0 -3
  147. package/src/schematics/config-schematics/index.js +0 -82
  148. package/src/schematics/config-schematics/index.js.map +0 -1
  149. package/src/schematics/config-schematics/init-src-files.d.ts +0 -2
  150. package/src/schematics/config-schematics/init-src-files.js +0 -16
  151. package/src/schematics/config-schematics/init-src-files.js.map +0 -1
  152. package/src/schematics/config-schematics/schema.json +0 -47
  153. package/src/schematics/config-update-package-group/index.d.ts +0 -3
  154. package/src/schematics/config-update-package-group/index.js +0 -21
  155. package/src/schematics/config-update-package-group/index.js.map +0 -1
  156. package/src/schematics/config-update-package-group/schema.json +0 -21
  157. package/src/schematics/config-update-peer-dependencies/index.d.ts +0 -3
  158. package/src/schematics/config-update-peer-dependencies/index.js +0 -26
  159. package/src/schematics/config-update-peer-dependencies/index.js.map +0 -1
  160. package/src/schematics/config-update-peer-dependencies/schema.json +0 -28
  161. package/src/schematics/ng-add/index.d.ts +0 -3
  162. package/src/schematics/ng-add/index.js +0 -21
  163. package/src/schematics/ng-add/index.js.map +0 -1
  164. package/src/schematics/ng-add/schema.json +0 -17
package/CHANGELOG.md CHANGED
@@ -3,375 +3,431 @@
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.0-dev.3](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@16.0.0-dev.2...@rxap/plugin-library@16.0.0-dev.3) (2023-05-18)
7
-
6
+ # [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)
8
7
 
9
8
  ### Bug Fixes
10
9
 
11
- * remove deprecated pack target concept ([39f1869](https://gitlab.com/rxap/schematics/commit/39f18698795cc6f5d8db81b43581c7d75244021f))
10
+ - cleanup target version ([06558eb](https://gitlab.com/rxap/packages/commit/06558eb200e620dfb6ea217885520c6561cd1c25))
11
+ - coerce the index-export default target options ([1de131c](https://gitlab.com/rxap/packages/commit/1de131c42dfa133dc448d0d1a300d49e1ae9b7cc))
12
+
13
+ # [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)
12
14
 
15
+ ### Bug Fixes
13
16
 
17
+ - add the index-export target to all non plugin/schematic/generator project targets ([efaac2e](https://gitlab.com/rxap/packages/commit/efaac2e7aca03589c1b80559b51eb08297f6e933))
18
+ - check if the LICENSE file exists before access the file ([de5bb8e](https://gitlab.com/rxap/packages/commit/de5bb8ec6ca66c4bfc663152f26b98b77273d30a))
19
+ - introduce Is\*Project functions ([0f4a53a](https://gitlab.com/rxap/packages/commit/0f4a53a2a68c7f854d819c005a30957d8b1cb3c6))
14
20
 
21
+ # [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)
15
22
 
23
+ ### Bug Fixes
16
24
 
17
- # [16.0.0-dev.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@16.0.0-dev.1...@rxap/plugin-library@16.0.0-dev.2) (2023-05-18)
25
+ - handle readme generator execution errors ([a5c5204](https://gitlab.com/rxap/packages/commit/a5c5204b6e2bcd39db3d868e1bfa5955b0570dbf))
26
+ - support schema with $ref and allOf properties ([c8a1640](https://gitlab.com/rxap/packages/commit/c8a164039443b37e2c0a6b2d1dceb1bfa6312b97))
18
27
 
28
+ # [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)
19
29
 
20
30
  ### Bug Fixes
21
31
 
22
- * **deps:** update rxap packages to 16.x.x ([bd63f0b](https://gitlab.com/rxap/schematics/commit/bd63f0bfe3356eb1d00bb136253789f2e481e04b))
32
+ - add skip-projects flag ([0f45987](https://gitlab.com/rxap/packages/commit/0f45987bc9dd927b1ede9eb53256125fa0e33674))
23
33
 
34
+ # [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)
24
35
 
36
+ ### Bug Fixes
25
37
 
38
+ - update default root project name ([85e724a](https://gitlab.com/rxap/packages/commit/85e724a7f08bcffdd4637311fe9560a674672a8f))
26
39
 
40
+ # [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)
27
41
 
28
- # [16.0.0-dev.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@16.0.0-dev.0...@rxap/plugin-library@16.0.0-dev.1) (2023-05-17)
42
+ ### Bug Fixes
29
43
 
30
- **Note:** Version bump only for package @rxap/plugin-library
44
+ - array parameters escape ([4fd79fe](https://gitlab.com/rxap/packages/commit/4fd79feeafdfece921f6ad9e32269cca882d04f0))
31
45
 
46
+ # [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)
32
47
 
48
+ ### Bug Fixes
33
49
 
50
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
34
51
 
52
+ # [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)
35
53
 
36
- # [16.0.0-dev.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.2...@rxap/plugin-library@16.0.0-dev.0) (2023-05-11)
54
+ ### Bug Fixes
37
55
 
56
+ - use UpdatePackageJson utility function ([6e0e735](https://gitlab.com/rxap/packages/commit/6e0e735797462edd447bc1c78c804829c6f3c16f))
38
57
 
39
- ### Build System
58
+ # [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)
40
59
 
41
- * upgrade to nrwl 16.x.x ([de73759](https://gitlab.com/rxap/schematics/commit/de737599e984ce6e0dd19776ffbd04ab2c4085f3))
60
+ **Note:** Version bump only for package @rxap/plugin-library
42
61
 
62
+ # [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)
43
63
 
44
- ### BREAKING CHANGES
64
+ **Note:** Version bump only for package @rxap/plugin-library
45
65
 
46
- * upgrade nrwl 16.x.x
66
+ # [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)
47
67
 
68
+ ### Features
48
69
 
70
+ - support string interpolation ([dfcdc79](https://gitlab.com/rxap/packages/commit/dfcdc798f8856dae07b2b7704c60dd145d44a65a))
49
71
 
72
+ # [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)
50
73
 
74
+ ### Bug Fixes
51
75
 
52
- ## [15.0.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.1...@rxap/plugin-library@15.0.2) (2023-05-11)
76
+ - generate index file for non angular projects ([5d88306](https://gitlab.com/rxap/packages/commit/5d8830611d751c3f17eb18a2e5db9aa80e3d2312))
53
77
 
78
+ ### Features
54
79
 
55
- ### Bug Fixes
80
+ - support angular library entrypoints ([7718326](https://gitlab.com/rxap/packages/commit/7718326464e1971d6b9463a6ae611a279ba4c1a7))
56
81
 
57
- * update to nrwl 15.9.4 ([c9ab045](https://gitlab.com/rxap/schematics/commit/c9ab0454484162e633b789a6274d77793179df23))
82
+ # [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)
58
83
 
84
+ ### Bug Fixes
59
85
 
86
+ - ensure overwrite option is passed to sub schematics ([8472aab](https://gitlab.com/rxap/packages/commit/8472aab8814227c851fab9ae4c1b9ec3019d6f4e))
87
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
60
88
 
89
+ # [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)
61
90
 
91
+ ### Reverts
62
92
 
63
- ## [15.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.0...@rxap/plugin-library@15.0.1) (2023-01-30)
93
+ - change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
64
94
 
65
- **Note:** Version bump only for package @rxap/plugin-library
95
+ # [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)
66
96
 
97
+ ### Bug Fixes
67
98
 
99
+ - change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
68
100
 
101
+ # [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)
69
102
 
103
+ ### Bug Fixes
70
104
 
71
- # [15.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.3...@rxap/plugin-library@15.0.0) (2022-12-14)
105
+ - exclude .cy.ts files ([bbaf974](https://gitlab.com/rxap/packages/commit/bbaf97402207b09744fae8b9fb9c5c88f3cf4759))
72
106
 
107
+ # [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)
73
108
 
74
- ### chore
109
+ ### Bug Fixes
75
110
 
76
- * upgrade to nrwl 15.x.x ([b0694b6](https://gitlab.com/rxap/schematics/commit/b0694b6550730b80fb7356f6c225787fda1ff6be))
111
+ - add expose-as-schematic to plugin projects with generators ([6c9fac8](https://gitlab.com/rxap/packages/commit/6c9fac892950e2942e7994673c35987b9b1b6fe7))
112
+ - ensure new line ([2db00f1](https://gitlab.com/rxap/packages/commit/2db00f115cf59e0e89fa53c70426b3e7cb829461))
113
+ - expose generators as schematics ([679ca36](https://gitlab.com/rxap/packages/commit/679ca36d3712a11e4dc838762bca2f7c471e1e04))
77
114
 
115
+ # [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)
78
116
 
79
- ### Features
117
+ ### Bug Fixes
80
118
 
81
- * **library:** only include direct dependencies on default ([8892585](https://gitlab.com/rxap/schematics/commit/889258508b6a157b049ba9ebd74d6c32f8865331))
119
+ - check if homepage is set prevent ref by null ([6e86439](https://gitlab.com/rxap/packages/commit/6e8643966ff79d3f329a9a2e73b39a7e27c55849))
82
120
 
121
+ # [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)
83
122
 
84
- ### BREAKING CHANGES
123
+ ### Bug Fixes
85
124
 
86
- * upgrade nrwl 15.x.x
125
+ - add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
126
+ - call the schematic utility script if rxap repository ([6497a76](https://gitlab.com/rxap/packages/commit/6497a7680503cf0aab38e5de7db813c0733d191c))
127
+ - enforce that the production configuration is the default configuration ([6e9c3b7](https://gitlab.com/rxap/packages/commit/6e9c3b7a58e92bcb5a1b9b772a34153b44acc8f9))
87
128
 
129
+ # [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)
88
130
 
131
+ ### Bug Fixes
89
132
 
133
+ - remove nx dependency ([5cc2200](https://gitlab.com/rxap/packages/commit/5cc2200ca3f12ef39bb959f98730975978b5194e))
90
134
 
135
+ ### Features
91
136
 
92
- ## [14.0.3](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.2...@rxap/plugin-library@14.0.3) (2022-12-14)
137
+ - add init-buildable and init-publishable generator ([b4ca2ba](https://gitlab.com/rxap/packages/commit/b4ca2ba9ff370be4e9c6d0948f8c62635c8ffac3))
93
138
 
94
- **Note:** Version bump only for package @rxap/plugin-library
139
+ # [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)
95
140
 
141
+ ### Bug Fixes
96
142
 
143
+ - ensure fix-dependencies for dependencies is run first ([c01d930](https://gitlab.com/rxap/packages/commit/c01d93095a05877094e701ac385ec7521335a6a4))
144
+ - use absolute path to access files ([32323ab](https://gitlab.com/rxap/packages/commit/32323ab900da408dcd6ae05dc12e562feff798f9))
145
+ - use utility function to set targets and target defaults ([5914d7e](https://gitlab.com/rxap/packages/commit/5914d7efae28b891044da79f02f077d7b2398d2b))
97
146
 
147
+ # [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)
98
148
 
149
+ ### Features
99
150
 
100
- ## [14.0.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.1...@rxap/plugin-library@14.0.2) (2022-10-06)
151
+ - add project to package name mapping utilities ([86ce9ab](https://gitlab.com/rxap/packages/commit/86ce9abfff3cba758c1f12667002953e5f5f4464))
101
152
 
153
+ # [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)
102
154
 
103
155
  ### Bug Fixes
104
156
 
105
- * update rxap packages to 14.x.x ([eda3337](https://gitlab.com/rxap/schematics/commit/eda3337af2c477126a3d83715cdc7a955c239cb6))
157
+ - create publish directory with relative output path ([55f5755](https://gitlab.com/rxap/packages/commit/55f575535c58436f8625c148da9d9ec3c25f451d))
158
+ - generate readme with peer dependencies to install ([e7039bb](https://gitlab.com/rxap/packages/commit/e7039bb5e86ffeadfe7cc92d5fc71d32f8efb4fb))
106
159
 
160
+ # 16.0.0-dev.8 (2023-08-01)
107
161
 
162
+ ### Bug Fixes
108
163
 
164
+ - add glob and fx-extra to package blacklist ([ac94d83](https://gitlab.com/rxap/packages/commit/ac94d83a52efd694fff36afafaadd824df54c525))
165
+ - **check-version:** exclude pre release suffix in comparison ([4dce004](https://gitlab.com/rxap/packages/commit/4dce0048bc2985d8d04f4653a41669591dc54b68))
166
+ - **fix-dependencies:** reuse existing project dependency version ([288768c](https://gitlab.com/rxap/packages/commit/288768cb2680560313da862b0c2aabc3e8f3207c))
167
+ - ignore express and axios packages ([f9234c8](https://gitlab.com/rxap/packages/commit/f9234c88bdec7ffaeb93d5a3a5e1de1d35bbb587))
168
+ - ignore projects that have no package.json ([0299bfc](https://gitlab.com/rxap/packages/commit/0299bfc45553853b1c6c9e3e88e4c8ce2b4ac6b4))
169
+ - **init:** add the fix-dependencies target and update the preversion script ([05cfb76](https://gitlab.com/rxap/packages/commit/05cfb7626a3329b3c419016525d4ad1d1f1212ef))
170
+ - **init:** use init plugin generator for plugin projects ([602f623](https://gitlab.com/rxap/packages/commit/602f62361ac6e10502cfe775d7ec50527e6afec3))
171
+ - move GetLatestPackageVersion to @rxap/node-utilities ([72cfdb8](https://gitlab.com/rxap/packages/commit/72cfdb8863b9e6ca567f87d90b8851eca930a2e1))
172
+ - remove scss assets copies if \_index.scss does not exist ([22aa410](https://gitlab.com/rxap/packages/commit/22aa41063fa0d24cdcfaee4a85e042390b3d44de))
173
+ - restructure and merge mono repos packages, schematics, plugins and nest ([a057d77](https://gitlab.com/rxap/packages/commit/a057d77ca2acf9426a03a497da8532f8a2fe2c86))
174
+ - **run-generator:** support dry-run and without-project-argument flags ([19e3fa5](https://gitlab.com/rxap/packages/commit/19e3fa514af26044191a147a77c877e14c701b97))
175
+ - update package dependency versions ([45bd022](https://gitlab.com/rxap/packages/commit/45bd022d755c0c11f7d0bcc76d26b39928007941))
176
+ - **update-package-group:** only include @rxap/\* packages ([20e6c72](https://gitlab.com/rxap/packages/commit/20e6c72f1f69c0569bfe2655443b4f7533b31c79))
177
+ - **update-package-group:** use pined version instead of range ([a18c421](https://gitlab.com/rxap/packages/commit/a18c421093a98b84a3041052a4739df418f970f4))
109
178
 
179
+ ### Features
110
180
 
111
- ## [14.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.0...@rxap/plugin-library@14.0.1) (2022-10-06)
181
+ - **executor:** add check version ([16b9f21](https://gitlab.com/rxap/packages/commit/16b9f21e4ad29fabe08fea6e095d3f9a469b03b7))
182
+ - **generator:** add init-plugin ([fa4d996](https://gitlab.com/rxap/packages/commit/fa4d9967229918b96c8976881705ab7726c1e96c))
183
+ - **init:** execute nest init generator if project is for nestjs ([94b2a18](https://gitlab.com/rxap/packages/commit/94b2a1841a0c6c65bed4ececefa2fed033be8c14))
112
184
 
185
+ # [16.0.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.6...@rxap/plugin-library@16.0.0-dev.7) (2023-07-20)
113
186
 
114
187
  ### Bug Fixes
115
188
 
116
- * remove @rxap/utilities dependency ([fa8b3e6](https://gitlab.com/rxap/schematics/commit/fa8b3e667f7c4e5e1a5f15a5d0cc9543da72729d))
189
+ - add glob and fx-extra to package blacklist ([5f3a7d7](https://gitlab.com/rxap/packages/commit/5f3a7d7e0bcf4cc6ae2fee0210a458f59a103e36))
117
190
 
191
+ # [16.0.0-dev.6](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.5...@rxap/plugin-library@16.0.0-dev.6) (2023-07-13)
118
192
 
193
+ ### Bug Fixes
119
194
 
195
+ - move GetLatestPackageVersion to @rxap/node-utilities ([56bc441](https://gitlab.com/rxap/packages/commit/56bc441d3af89c5c2a99cd3d300e2f4b55dbb624))
120
196
 
197
+ # [16.0.0-dev.5](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.4...@rxap/plugin-library@16.0.0-dev.5) (2023-07-10)
121
198
 
122
- # [14.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.1...@rxap/plugin-library@14.0.0) (2022-09-08)
199
+ ### Bug Fixes
123
200
 
201
+ - update package dependency versions ([8479f5c](https://gitlab.com/rxap/packages/commit/8479f5c405a885cc0f300cec6156584e4c65d59c))
202
+ - **update-package-group:** only include @rxap/\* packages ([f4631e3](https://gitlab.com/rxap/packages/commit/f4631e3713ed994c5f2cf5b64fd1563e1d6a22a9))
124
203
 
125
- ### chore
204
+ # 16.0.0-dev.4 (2023-07-10)
126
205
 
127
- * upgrade to 14.x.x ([52cccdb](https://gitlab.com/rxap/schematics/commit/52cccdb066599a3c333117107a06169e5d42c604))
206
+ ### Bug Fixes
128
207
 
208
+ - **fix-dependencies:** reuse existing project dependency version ([664c64e](https://gitlab.com/rxap/packages/commit/664c64e94d0f5717fa6e78180fbaadb7337f6ffe))
209
+ - **init:** add the fix-dependencies target and update the preversion script ([548740b](https://gitlab.com/rxap/packages/commit/548740b8560320afa69566c54ec709171a6ff7b5))
210
+ - remove scss assets copies if \_index.scss does not exist ([8d6ef93](https://gitlab.com/rxap/packages/commit/8d6ef93f3ec62cf915743a475ed48258e836f49a))
211
+ - restructure and merge mono repos packages, schematics, plugins and nest ([653b4cd](https://gitlab.com/rxap/packages/commit/653b4cd39fc92d322df9b3959651fea0aa6079da))
212
+ - **run-generator:** support dry-run and without-project-argument flags ([7f4d918](https://gitlab.com/rxap/packages/commit/7f4d918e4852131550571779ca25b02c904ad83c))
213
+ - **update-package-group:** use pined version instead of range ([30b1307](https://gitlab.com/rxap/packages/commit/30b130780dde4fba670429e6dd56377cb94f8513))
129
214
 
130
- ### BREAKING CHANGES
215
+ # [16.0.0-dev.3](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@16.0.0-dev.2...@rxap/plugin-library@16.0.0-dev.3) (2023-05-18)
131
216
 
132
- * upgrade to 14.x.x
217
+ ### Bug Fixes
133
218
 
219
+ - remove deprecated pack targetconcept ([39f1869](https://gitlab.com/rxap/schematics/commit/39f18698795cc6f5d8db81b43581c7d75244021f))
134
220
 
221
+ # [16.0.0-dev.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@16.0.0-dev.1...@rxap/plugin-library@16.0.0-dev.2) (2023-05-18)
135
222
 
223
+ ### Bug Fixes
136
224
 
225
+ - **deps:** update rxap packages to16.x.x ([bd63f0b](https://gitlab.com/rxap/schematics/commit/bd63f0bfe3356eb1d00bb136253789f2e481e04b))
137
226
 
138
- ## [13.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.0...@rxap/plugin-library@13.0.1) (2022-09-08)
227
+ # [16.0.0-dev.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@16.0.0-dev.0...@rxap/plugin-library@16.0.0-dev.1) (2023-05-17)
139
228
 
140
229
  **Note:** Version bump only for package @rxap/plugin-library
141
230
 
231
+ # [16.0.0-dev.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.2...@rxap/plugin-library@16.0.0-dev.0) (2023-05-11)
142
232
 
233
+ ### Build System
143
234
 
235
+ - upgrade to nrwl 16.x.x ([de73759](https://gitlab.com/rxap/schematics/commit/de737599e984ce6e0dd19776ffbd04ab2c4085f3))
144
236
 
237
+ ### BREAKING CHANGES
145
238
 
146
- # [13.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.0-next.2...@rxap/plugin-library@13.0.0) (2022-09-08)
239
+ - upgrade nrwl 16.x.x
147
240
 
148
- **Note:** Version bump only for package @rxap/plugin-library
241
+ ## [15.0.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.1...@rxap/plugin-library@15.0.2) (2023-05-11)
149
242
 
243
+ ### Bug Fixes
150
244
 
245
+ - update to nrwl 15.9.4 ([c9ab045](https://gitlab.com/rxap/schematics/commit/c9ab0454484162e633b789a6274d77793179df23))
151
246
 
247
+ ## [15.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.0...@rxap/plugin-library@15.0.1) (2023-01-30)
152
248
 
249
+ **Note:** Version bump only for package @rxap/plugin-library
153
250
 
154
- # [13.0.0-next.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.2...@rxap/plugin-library@13.0.0-next.2) (2022-03-24)
251
+ # [15.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.3...@rxap/plugin-library@15.0.0) (2022-12-14)
155
252
 
253
+ ### chore
156
254
 
157
- ### Bug Fixes
255
+ - upgrade to nrwl 15.x.x ([b0694b6](https://gitlab.com/rxap/schematics/commit/b0694b6550730b80fb7356f6c225787fda1ff6be))
158
256
 
159
- * update catch type ([a3a376b](https://gitlab.com/rxap/schematics/commit/a3a376be772f10889a1f7e1afdf18895ce070d9e))
160
- * **update-peer-dependencies:** migrate to use the createProjectGraphAsync if cache is unavailable ([3454d1d](https://gitlab.com/rxap/schematics/commit/3454d1d0f21a201da01169e4bd470811bcbac919))
161
- * **update-peer-dependencies:** update to the new project graph structure ([1b86986](https://gitlab.com/rxap/schematics/commit/1b86986ab259eaa6859f827164c389fd17fa63fc))
257
+ ### Features
162
258
 
259
+ - **library:** only include direct dependencies ondefault ([8892585](https://gitlab.com/rxap/schematics/commit/889258508b6a157b049ba9ebd74d6c32f8865331))
163
260
 
164
- ### Build System
261
+ ### BREAKING CHANGES
165
262
 
166
- * upgrade to nrwl 13.x.x ([8f07b6b](https://gitlab.com/rxap/schematics/commit/8f07b6b82fb82e8b70fbc82bd91a08d69cc52692))
263
+ - upgrade nrwl 15.x.x
167
264
 
265
+ ## [14.0.3](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.2...@rxap/plugin-library@14.0.3) (2022-12-14)
168
266
 
169
- ### BREAKING CHANGES
267
+ **Note:** Version bump only for package @rxap/plugin-library
170
268
 
171
- * update the core nrwl packages to 13.x.x
269
+ ## [14.0.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.1...@rxap/plugin-library@14.0.2) (2022-10-06)
172
270
 
173
- Signed-off-by: Merzough Münker <mmuenker@digitaix.com>
271
+ ### Bug Fixes
174
272
 
273
+ - update rxap packages to14.x.x ([eda3337](https://gitlab.com/rxap/schematics/commit/eda3337af2c477126a3d83715cdc7a955c239cb6))
175
274
 
275
+ ## [14.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.0...@rxap/plugin-library@14.0.1) (2022-10-06)
176
276
 
277
+ ### Bug Fixes
177
278
 
279
+ - remove @rxap/utilitiesdependency ([fa8b3e6](https://gitlab.com/rxap/schematics/commit/fa8b3e667f7c4e5e1a5f15a5d0cc9543da72729d))
178
280
 
179
- # [13.0.0-next.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.0-next.0...@rxap/plugin-library@13.0.0-next.1) (2022-02-25)
281
+ # [14.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.1...@rxap/plugin-library@14.0.0) (2022-09-08)
180
282
 
283
+ ### chore
181
284
 
182
- ### Bug Fixes
285
+ - upgrade to 14.x.x ([52cccdb](https://gitlab.com/rxap/schematics/commit/52cccdb066599a3c333117107a06169e5d42c604))
183
286
 
184
- * update catch type ([4587831](https://gitlab.com/rxap/schematics/commit/45878319c926061dc8995c568278c4ae7a903feb))
287
+ ### BREAKING CHANGES
185
288
 
289
+ - upgrade to 14.x.x
186
290
 
291
+ ## [13.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.0...@rxap/plugin-library@13.0.1) (2022-09-08)
187
292
 
293
+ **Note:** Version bump only for package @rxap/plugin-library
188
294
 
295
+ # [13.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.0-next.2...@rxap/plugin-library@13.0.0) (2022-09-08)
189
296
 
190
- # [13.0.0-next.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.2...@rxap/plugin-library@13.0.0-next.0) (2022-02-19)
297
+ **Note:** Version bump only for package @rxap/plugin-library
191
298
 
299
+ # [13.0.0-next.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.2...@rxap/plugin-library@13.0.0-next.2) (2022-03-24)
192
300
 
193
301
  ### Bug Fixes
194
302
 
195
- * **update-peer-dependencies:** migrate to use the createProjectGraphAsync if cache is unavailable ([5307344](https://gitlab.com/rxap/schematics/commit/530734419cd4c05a1c13443da0e0cad0ce510d79))
196
- * **update-peer-dependencies:** update to the new project graph structure ([3cc7378](https://gitlab.com/rxap/schematics/commit/3cc7378eef2372b1caf4c4587a70d6e23e0aadcf))
197
-
303
+ - update catch type ([a3a376b](https://gitlab.com/rxap/schematics/commit/a3a376be772f10889a1f7e1afdf18895ce070d9e))
304
+ - **update-peer-dependencies:** migrate to use the createProjectGraphAsync if cache isunavailable ([3454d1d](https://gitlab.com/rxap/schematics/commit/3454d1d0f21a201da01169e4bd470811bcbac919))
305
+ - **update-peer-dependencies:** update to the new project graphstructure ([1b86986](https://gitlab.com/rxap/schematics/commit/1b86986ab259eaa6859f827164c389fd17fa63fc))
198
306
 
199
307
  ### Build System
200
308
 
201
- * upgrade to nrwl 13.x.x ([f6fb1fd](https://gitlab.com/rxap/schematics/commit/f6fb1fde34006136be4dadd72795d2d43207072a))
202
-
309
+ - upgrade to nrwl 13.x.x ([8f07b6b](https://gitlab.com/rxap/schematics/commit/8f07b6b82fb82e8b70fbc82bd91a08d69cc52692))
203
310
 
204
311
  ### BREAKING CHANGES
205
312
 
206
- * update the core nrwl packages to 13.x.x
313
+ - update the core nrwl packages to 13.x.x
207
314
 
208
315
  Signed-off-by: Merzough Münker <mmuenker@digitaix.com>
209
316
 
317
+ # [13.0.0-next.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.0-next.0...@rxap/plugin-library@13.0.0-next.1) (2022-02-25)
210
318
 
319
+ ### Bug Fixes
211
320
 
321
+ - update catch type ([4587831](https://gitlab.com/rxap/schematics/commit/45878319c926061dc8995c568278c4ae7a903feb))
212
322
 
323
+ # [13.0.0-next.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.2...@rxap/plugin-library@13.0.0-next.0) (2022-02-19)
213
324
 
214
- ## [12.4.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.2-next.1...@rxap/plugin-library@12.4.2) (2021-10-07)
215
-
216
- **Note:** Version bump only for package @rxap/plugin-library
217
-
325
+ ### Bug Fixes
218
326
 
327
+ - **update-peer-dependencies:** migrate to use the createProjectGraphAsync if cache isunavailable ([5307344](https://gitlab.com/rxap/schematics/commit/530734419cd4c05a1c13443da0e0cad0ce510d79))
328
+ - **update-peer-dependencies:** update to the new project graphstructure ([3cc7378](https://gitlab.com/rxap/schematics/commit/3cc7378eef2372b1caf4c4587a70d6e23e0aadcf))
219
329
 
330
+ ### Build System
220
331
 
332
+ - upgrade to nrwl 13.x.x ([f6fb1fd](https://gitlab.com/rxap/schematics/commit/f6fb1fde34006136be4dadd72795d2d43207072a))
221
333
 
222
- ## [12.4.2-next.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.2-next.0...@rxap/plugin-library@12.4.2-next.1) (2021-08-11)
334
+ ### BREAKING CHANGES
223
335
 
336
+ - update the core nrwl packages to 13.x.x
224
337
 
225
- ### Bug Fixes
338
+ Signed-off-by: Merzough Münker <mmuenker@digitaix.com>
226
339
 
227
- * add nrwl package to peer dependencies ([e15f848](https://gitlab.com/rxap/schematics/commit/e15f848369366bad60b63b32c7e71710b1ded826))
340
+ ## [12.4.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.2-next.1...@rxap/plugin-library@12.4.2) (2021-10-07)
228
341
 
342
+ **Note:** Version bump only for package @rxap/plugin-library
229
343
 
344
+ ## [12.4.2-next.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.2-next.0...@rxap/plugin-library@12.4.2-next.1) (2021-08-11)
230
345
 
346
+ ### Bug Fixes
231
347
 
348
+ - add nrwl package to peerdependencies ([e15f848](https://gitlab.com/rxap/schematics/commit/e15f848369366bad60b63b32c7e71710b1ded826))
232
349
 
233
350
  ## [12.4.2-next.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.1...@rxap/plugin-library@12.4.2-next.0) (2021-08-10)
234
351
 
235
-
236
352
  ### Bug Fixes
237
353
 
238
- * add strict tsc compiler option ([a262758](https://gitlab.com/rxap/schematics/commit/a2627582222671e58f6feaed0309d33ab13e6984))
239
-
240
-
241
-
242
-
354
+ - add strict tsc compileroption ([a262758](https://gitlab.com/rxap/schematics/commit/a2627582222671e58f6feaed0309d33ab13e6984))
243
355
 
244
356
  ## [12.4.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.0...@rxap/plugin-library@12.4.1) (2021-07-27)
245
357
 
246
-
247
358
  ### Bug Fixes
248
359
 
249
- * replace deprecated schema id property ([cb8dedb](https://gitlab.com/rxap/schematics/commit/cb8dedb0c15c774f6c101df150f0d98242bc511a))
250
-
251
-
252
-
253
-
360
+ - replace deprecated schema idproperty ([cb8dedb](https://gitlab.com/rxap/schematics/commit/cb8dedb0c15c774f6c101df150f0d98242bc511a))
254
361
 
255
362
  # [12.4.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.0-next.1...@rxap/plugin-library@12.4.0) (2021-07-09)
256
363
 
257
364
  **Note:** Version bump only for package @rxap/plugin-library
258
365
 
259
-
260
-
261
-
262
-
263
366
  # [12.4.0-next.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.0-next.0...@rxap/plugin-library@12.4.0-next.1) (2021-07-08)
264
367
 
265
-
266
368
  ### Bug Fixes
267
369
 
268
- * include hidden files in schematics files folder ([028450e](https://gitlab.com/rxap/schematics/commit/028450e11e0f0caeec7ace91e84d45a606ff2dad))
269
-
270
-
271
-
272
-
370
+ - include hidden files in schematics filesfolder ([028450e](https://gitlab.com/rxap/schematics/commit/028450e11e0f0caeec7ace91e84d45a606ff2dad))
273
371
 
274
372
  # [12.4.0-next.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.3.2...@rxap/plugin-library@12.4.0-next.0) (2021-06-28)
275
373
 
276
-
277
374
  ### Bug Fixes
278
375
 
279
- * **update-package-dependencies:** only update ng-package if exists ([0374698](https://gitlab.com/rxap/schematics/commit/0374698b552356409336b4389e09b16b44746f57))
280
-
376
+ - **update-package-dependencies:** only update ng-package ifexists ([0374698](https://gitlab.com/rxap/schematics/commit/0374698b552356409336b4389e09b16b44746f57))
281
377
 
282
378
  ### Features
283
379
 
284
- * **update-package-dependencies:** add option dependencies ([c7c7fd8](https://gitlab.com/rxap/schematics/commit/c7c7fd83d3f143508009d3af34ed1daac37d90a2))
285
-
286
-
287
-
288
-
380
+ - **update-package-dependencies:** add optiondependencies ([c7c7fd8](https://gitlab.com/rxap/schematics/commit/c7c7fd83d3f143508009d3af34ed1daac37d90a2))
289
381
 
290
382
  ## [12.3.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.3.1...@rxap/plugin-library@12.3.2) (2021-06-23)
291
383
 
292
384
  **Note:** Version bump only for package @rxap/plugin-library
293
385
 
294
-
295
-
296
-
297
-
298
386
  ## [12.3.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.3.0...@rxap/plugin-library@12.3.1) (2021-06-23)
299
387
 
300
-
301
388
  ### Bug Fixes
302
389
 
303
- * mv typescript package to dependencies ([06a7d2b](https://gitlab.com/rxap/schematics/commit/06a7d2bbbf5b0018cacdeb2445942719682c6937))
304
-
305
-
306
-
307
-
390
+ - mv typescript package todependencies ([06a7d2b](https://gitlab.com/rxap/schematics/commit/06a7d2bbbf5b0018cacdeb2445942719682c6937))
308
391
 
309
392
  # [12.3.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.2.0...@rxap/plugin-library@12.3.0) (2021-06-23)
310
393
 
311
-
312
394
  ### Features
313
395
 
314
- * remove lerna dependency ([652fed9](https://gitlab.com/rxap/schematics/commit/652fed9b577a2554e0212320ed78281ef204eb10))
315
-
316
-
317
-
318
-
396
+ - remove lernadependency ([652fed9](https://gitlab.com/rxap/schematics/commit/652fed9b577a2554e0212320ed78281ef204eb10))
319
397
 
320
398
  # [12.2.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.1.2...@rxap/plugin-library@12.2.0) (2021-06-23)
321
399
 
322
-
323
400
  ### Bug Fixes
324
401
 
325
- * mv peerDependencies to dependencies ([97be8bf](https://gitlab.com/rxap/schematics/commit/97be8bf8395ede8e5a50804b9ad7f72fde12bc81))
326
-
402
+ - mv peerDependencies todependencies ([97be8bf](https://gitlab.com/rxap/schematics/commit/97be8bf8395ede8e5a50804b9ad7f72fde12bc81))
327
403
 
328
404
  ### Features
329
405
 
330
- * **update-package-dependencies:** update the package.json dependencies ([6afdf0e](https://gitlab.com/rxap/schematics/commit/6afdf0ed0881b6ff85e720ff1ca0d6cd3f4dbfdd))
331
-
332
-
333
-
334
-
406
+ - **update-package-dependencies:** update the package.jsondependencies ([6afdf0e](https://gitlab.com/rxap/schematics/commit/6afdf0ed0881b6ff85e720ff1ca0d6cd3f4dbfdd))
335
407
 
336
408
  ## [12.1.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.1.1...@rxap/plugin-library@12.1.2) (2021-06-23)
337
409
 
338
-
339
410
  ### Bug Fixes
340
411
 
341
- * only write json file if changed ([b39207b](https://gitlab.com/rxap/schematics/commit/b39207b446fde7ea294a3eb1313ed714f6861ece))
342
-
343
-
344
-
345
-
412
+ - only write json file ifchanged ([b39207b](https://gitlab.com/rxap/schematics/commit/b39207b446fde7ea294a3eb1313ed714f6861ece))
346
413
 
347
414
  ## [12.1.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.1.0...@rxap/plugin-library@12.1.1) (2021-06-23)
348
415
 
349
-
350
416
  ### Bug Fixes
351
417
 
352
- * set ng-add save target to devDependencies ([c213f21](https://gitlab.com/rxap/schematics/commit/c213f21067e8bb280a48ae726840bfe0f5c4ff11))
353
-
354
-
355
-
356
-
418
+ - set ng-add save target todevDependencies ([c213f21](https://gitlab.com/rxap/schematics/commit/c213f21067e8bb280a48ae726840bfe0f5c4ff11))
357
419
 
358
420
  # [12.1.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.0.1...@rxap/plugin-library@12.1.0) (2021-06-23)
359
421
 
360
-
361
422
  ### Bug Fixes
362
423
 
363
- * ensure the peerDependencies property is defined ([90122eb](https://gitlab.com/rxap/schematics/commit/90122eb42382c2761f8124a88d79f3a16e8c5635))
364
- * use correct options property ([2fea2f8](https://gitlab.com/rxap/schematics/commit/2fea2f801c9d3fe4ecceac0a568cfe93cfa42971))
365
-
424
+ - ensure the peerDependencies property isdefined ([90122eb](https://gitlab.com/rxap/schematics/commit/90122eb42382c2761f8124a88d79f3a16e8c5635))
425
+ - use correct optionsproperty ([2fea2f8](https://gitlab.com/rxap/schematics/commit/2fea2f801c9d3fe4ecceac0a568cfe93cfa42971))
366
426
 
367
427
  ### Features
368
428
 
369
- * add update-package-group builder ([e04006b](https://gitlab.com/rxap/schematics/commit/e04006bf53b3988fd110f8e61c899503e0e98c3d))
370
- * add update-peer-dependency builder ([f473dbe](https://gitlab.com/rxap/schematics/commit/f473dbeef0b1fcd5d5bba52ebff8311a6578e7a7))
371
-
372
-
373
-
374
-
429
+ - add update-package-groupbuilder ([e04006b](https://gitlab.com/rxap/schematics/commit/e04006bf53b3988fd110f8e61c899503e0e98c3d))
430
+ - add update-peer-dependencybuilder ([f473dbe](https://gitlab.com/rxap/schematics/commit/f473dbeef0b1fcd5d5bba52ebff8311a6578e7a7))
375
431
 
376
432
  ## 12.0.1 (2021-06-21)
377
433
 
@@ -1,18 +1,7 @@
1
- Copyright (C) 2021 Merzough Münker
2
-
3
- This program is free software: you can redistribute it and/or modify
4
- it under the terms of the GNU General Public License as published by
5
- the Free Software Foundation, either version 3 of the License, or
6
- (at your option) any later version.
7
-
8
- This program is distributed in the hope that it will be useful,
9
- but WITHOUT ANY WARRANTY; without even the implied warranty of
10
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
-
12
1
  GNU GENERAL PUBLIC LICENSE
13
2
  Version 3, 29 June 2007
14
3
 
15
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
16
5
  Everyone is permitted to copy and distribute verbatim copies
17
6
  of this license document, but changing it is not allowed.
18
7
 
@@ -628,3 +617,5 @@ reviewing courts shall apply local law that most closely approximates
628
617
  an absolute waiver of all civil liability in connection with the
629
618
  Program, unless a warranty or assumption of liability accompanies a
630
619
  copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS