@rxap/plugin-library 16.0.0-dev.1 → 16.0.0-dev.10

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 (128) hide show
  1. package/CHANGELOG.md +101 -164
  2. package/README.md +94 -127
  3. package/executors.json +29 -0
  4. package/generators.json +24 -0
  5. package/package.json +75 -38
  6. package/src/executors/check-version/executor.d.ts +5 -0
  7. package/src/executors/check-version/executor.js +36 -0
  8. package/src/executors/check-version/executor.js.map +1 -0
  9. package/src/executors/check-version/schema.d.ts +3 -0
  10. package/src/executors/check-version/schema.json +16 -0
  11. package/src/executors/readme/executor.d.ts +5 -0
  12. package/src/executors/readme/executor.js +141 -0
  13. package/src/executors/readme/executor.js.map +1 -0
  14. package/src/executors/readme/schema.d.ts +1 -0
  15. package/src/{builders/update-package-group → executors/readme}/schema.json +2 -3
  16. package/src/executors/run-generator/executor.d.ts +5 -0
  17. package/src/executors/run-generator/executor.js +46 -0
  18. package/src/executors/run-generator/executor.js.map +1 -0
  19. package/src/executors/run-generator/schema.d.ts +6 -0
  20. package/src/executors/run-generator/schema.json +27 -0
  21. package/src/executors/update-dependencies/executor.d.ts +5 -0
  22. package/src/executors/update-dependencies/executor.js +32 -0
  23. package/src/executors/update-dependencies/executor.js.map +1 -0
  24. package/src/executors/update-dependencies/schema.d.ts +1 -0
  25. package/src/executors/update-dependencies/schema.json +9 -0
  26. package/src/executors/update-package-group/executor.d.ts +5 -0
  27. package/src/executors/update-package-group/executor.js +45 -0
  28. package/src/executors/update-package-group/executor.js.map +1 -0
  29. package/src/executors/update-package-group/schema.d.ts +1 -0
  30. package/src/executors/update-package-group/schema.json +9 -0
  31. package/src/generators/fix-dependencies/generator.d.ts +27 -0
  32. package/src/generators/fix-dependencies/generator.js +520 -0
  33. package/src/generators/fix-dependencies/generator.js.map +1 -0
  34. package/src/generators/fix-dependencies/schema.d.ts +8 -0
  35. package/src/generators/fix-dependencies/schema.json +31 -0
  36. package/src/generators/index-export/generator.d.ts +4 -0
  37. package/src/generators/index-export/generator.js +72 -0
  38. package/src/generators/index-export/generator.js.map +1 -0
  39. package/src/generators/index-export/schema.d.ts +3 -0
  40. package/src/generators/index-export/schema.json +16 -0
  41. package/src/generators/init/files/README.md.handlebars +115 -0
  42. package/src/generators/init/generator.d.ts +4 -0
  43. package/src/generators/init/generator.js +156 -0
  44. package/src/generators/init/generator.js.map +1 -0
  45. package/src/generators/init/schema.d.ts +3 -0
  46. package/src/generators/init/schema.json +16 -0
  47. package/src/generators/init-plugin/generator.d.ts +4 -0
  48. package/src/generators/init-plugin/generator.js +54 -0
  49. package/src/generators/init-plugin/generator.js.map +1 -0
  50. package/src/generators/init-plugin/schema.d.ts +3 -0
  51. package/src/generators/init-plugin/schema.json +16 -0
  52. package/src/index.d.ts +1 -1
  53. package/src/index.js +3 -0
  54. package/src/index.js.map +1 -1
  55. package/LICENSE +0 -630
  56. package/builders.json +0 -20
  57. package/collection.json +0 -32
  58. package/migration.json +0 -4
  59. package/src/builders/build-schematics/builder.d.ts +0 -13
  60. package/src/builders/build-schematics/builder.js +0 -84
  61. package/src/builders/build-schematics/builder.js.map +0 -1
  62. package/src/builders/build-schematics/schema.json +0 -78
  63. package/src/builders/update-package-group/builder.d.ts +0 -19
  64. package/src/builders/update-package-group/builder.js +0 -89
  65. package/src/builders/update-package-group/builder.js.map +0 -1
  66. package/src/builders/update-package-group/read-file.d.ts +0 -7
  67. package/src/builders/update-package-group/read-file.js +0 -11
  68. package/src/builders/update-package-group/read-file.js.map +0 -1
  69. package/src/builders/update-package-group/write-file.d.ts +0 -5
  70. package/src/builders/update-package-group/write-file.js +0 -11
  71. package/src/builders/update-package-group/write-file.js.map +0 -1
  72. package/src/builders/update-peer-dependencies/builder.d.ts +0 -40
  73. package/src/builders/update-peer-dependencies/builder.js +0 -293
  74. package/src/builders/update-peer-dependencies/builder.js.map +0 -1
  75. package/src/builders/update-peer-dependencies/schema.json +0 -33
  76. package/src/builders/utils/assets.d.ts +0 -14
  77. package/src/builders/utils/assets.js +0 -54
  78. package/src/builders/utils/assets.js.map +0 -1
  79. package/src/builders/utils/compile-typescript-files.d.ts +0 -13
  80. package/src/builders/utils/compile-typescript-files.js +0 -56
  81. package/src/builders/utils/compile-typescript-files.js.map +0 -1
  82. package/src/builders/utils/equals.d.ts +0 -1
  83. package/src/builders/utils/equals.js +0 -200
  84. package/src/builders/utils/equals.js.map +0 -1
  85. package/src/builders/utils/unique.d.ts +0 -1
  86. package/src/builders/utils/unique.js +0 -8
  87. package/src/builders/utils/unique.js.map +0 -1
  88. package/src/schematics/config/index.d.ts +0 -3
  89. package/src/schematics/config/index.js +0 -17
  90. package/src/schematics/config/index.js.map +0 -1
  91. package/src/schematics/config/schema.json +0 -50
  92. package/src/schematics/config-schematics/coerce-builders-json.d.ts +0 -2
  93. package/src/schematics/config-schematics/coerce-builders-json.js +0 -23
  94. package/src/schematics/config-schematics/coerce-builders-json.js.map +0 -1
  95. package/src/schematics/config-schematics/coerce-builders.d.ts +0 -1
  96. package/src/schematics/config-schematics/coerce-builders.js +0 -11
  97. package/src/schematics/config-schematics/coerce-builders.js.map +0 -1
  98. package/src/schematics/config-schematics/coerce-collection-json.d.ts +0 -2
  99. package/src/schematics/config-schematics/coerce-collection-json.js +0 -23
  100. package/src/schematics/config-schematics/coerce-collection-json.js.map +0 -1
  101. package/src/schematics/config-schematics/coerce-migration-json.d.ts +0 -2
  102. package/src/schematics/config-schematics/coerce-migration-json.js +0 -23
  103. package/src/schematics/config-schematics/coerce-migration-json.js.map +0 -1
  104. package/src/schematics/config-schematics/coerce-ng-update.d.ts +0 -1
  105. package/src/schematics/config-schematics/coerce-ng-update.js +0 -21
  106. package/src/schematics/config-schematics/coerce-ng-update.js.map +0 -1
  107. package/src/schematics/config-schematics/coerce-schematics.d.ts +0 -1
  108. package/src/schematics/config-schematics/coerce-schematics.js +0 -11
  109. package/src/schematics/config-schematics/coerce-schematics.js.map +0 -1
  110. package/src/schematics/config-schematics/index.d.ts +0 -3
  111. package/src/schematics/config-schematics/index.js +0 -96
  112. package/src/schematics/config-schematics/index.js.map +0 -1
  113. package/src/schematics/config-schematics/init-src-files.d.ts +0 -2
  114. package/src/schematics/config-schematics/init-src-files.js +0 -16
  115. package/src/schematics/config-schematics/init-src-files.js.map +0 -1
  116. package/src/schematics/config-schematics/schema.json +0 -47
  117. package/src/schematics/config-update-package-group/index.d.ts +0 -3
  118. package/src/schematics/config-update-package-group/index.js +0 -21
  119. package/src/schematics/config-update-package-group/index.js.map +0 -1
  120. package/src/schematics/config-update-package-group/schema.json +0 -21
  121. package/src/schematics/config-update-peer-dependencies/index.d.ts +0 -3
  122. package/src/schematics/config-update-peer-dependencies/index.js +0 -26
  123. package/src/schematics/config-update-peer-dependencies/index.js.map +0 -1
  124. package/src/schematics/config-update-peer-dependencies/schema.json +0 -28
  125. package/src/schematics/ng-add/index.d.ts +0 -3
  126. package/src/schematics/ng-add/index.js +0 -21
  127. package/src/schematics/ng-add/index.js.map +0 -1
  128. package/src/schematics/ng-add/schema.json +0 -17
package/CHANGELOG.md CHANGED
@@ -3,353 +3,290 @@
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.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)
7
-
8
- **Note:** Version bump only for package @rxap/plugin-library
9
-
10
-
11
-
6
+ # [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)
12
7
 
8
+ ### Features
13
9
 
14
- # [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)
10
+ - add project to package name mapping utilities ([86ce9ab](https://gitlab.com/rxap/packages/commit/86ce9abfff3cba758c1f12667002953e5f5f4464))
15
11
 
12
+ # [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)
16
13
 
17
- ### Build System
14
+ ### Bug Fixes
18
15
 
19
- * upgrade to nrwl 16.x.x ([de73759](https://gitlab.com/rxap/schematics/commit/de737599e984ce6e0dd19776ffbd04ab2c4085f3))
16
+ - create publish directory with relative output path ([55f5755](https://gitlab.com/rxap/packages/commit/55f575535c58436f8625c148da9d9ec3c25f451d))
17
+ - generate readme with peer dependencies to install ([e7039bb](https://gitlab.com/rxap/packages/commit/e7039bb5e86ffeadfe7cc92d5fc71d32f8efb4fb))
20
18
 
19
+ # 16.0.0-dev.8 (2023-08-01)
21
20
 
22
- ### BREAKING CHANGES
21
+ ### Bug Fixes
23
22
 
24
- * upgrade nrwl 16.x.x
23
+ - add glob and fx-extra to package blacklist ([ac94d83](https://gitlab.com/rxap/packages/commit/ac94d83a52efd694fff36afafaadd824df54c525))
24
+ - **check-version:** exclude pre release suffix in comparison ([4dce004](https://gitlab.com/rxap/packages/commit/4dce0048bc2985d8d04f4653a41669591dc54b68))
25
+ - **fix-dependencies:** reuse existing project dependency version ([288768c](https://gitlab.com/rxap/packages/commit/288768cb2680560313da862b0c2aabc3e8f3207c))
26
+ - ignore express and axios packages ([f9234c8](https://gitlab.com/rxap/packages/commit/f9234c88bdec7ffaeb93d5a3a5e1de1d35bbb587))
27
+ - ignore projects that have no package.json ([0299bfc](https://gitlab.com/rxap/packages/commit/0299bfc45553853b1c6c9e3e88e4c8ce2b4ac6b4))
28
+ - **init:** add the fix-dependencies target and update the preversion script ([05cfb76](https://gitlab.com/rxap/packages/commit/05cfb7626a3329b3c419016525d4ad1d1f1212ef))
29
+ - **init:** use init plugin generator for plugin projects ([602f623](https://gitlab.com/rxap/packages/commit/602f62361ac6e10502cfe775d7ec50527e6afec3))
30
+ - move GetLatestPackageVersion to @rxap/node-utilities ([72cfdb8](https://gitlab.com/rxap/packages/commit/72cfdb8863b9e6ca567f87d90b8851eca930a2e1))
31
+ - remove scss assets copies if \_index.scss does not exist ([22aa410](https://gitlab.com/rxap/packages/commit/22aa41063fa0d24cdcfaee4a85e042390b3d44de))
32
+ - restructure and merge mono repos packages, schematics, plugins and nest ([a057d77](https://gitlab.com/rxap/packages/commit/a057d77ca2acf9426a03a497da8532f8a2fe2c86))
33
+ - **run-generator:** support dry-run and without-project-argument flags ([19e3fa5](https://gitlab.com/rxap/packages/commit/19e3fa514af26044191a147a77c877e14c701b97))
34
+ - update package dependency versions ([45bd022](https://gitlab.com/rxap/packages/commit/45bd022d755c0c11f7d0bcc76d26b39928007941))
35
+ - **update-package-group:** only include @rxap/\* packages ([20e6c72](https://gitlab.com/rxap/packages/commit/20e6c72f1f69c0569bfe2655443b4f7533b31c79))
36
+ - **update-package-group:** use pined version instead of range ([a18c421](https://gitlab.com/rxap/packages/commit/a18c421093a98b84a3041052a4739df418f970f4))
25
37
 
38
+ ### Features
26
39
 
40
+ - **executor:** add check version ([16b9f21](https://gitlab.com/rxap/packages/commit/16b9f21e4ad29fabe08fea6e095d3f9a469b03b7))
41
+ - **generator:** add init-plugin ([fa4d996](https://gitlab.com/rxap/packages/commit/fa4d9967229918b96c8976881705ab7726c1e96c))
42
+ - **init:** execute nest init generator if project is for nestjs ([94b2a18](https://gitlab.com/rxap/packages/commit/94b2a1841a0c6c65bed4ececefa2fed033be8c14))
27
43
 
44
+ # [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)
28
45
 
46
+ ### Bug Fixes
29
47
 
30
- ## [15.0.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.1...@rxap/plugin-library@15.0.2) (2023-05-11)
48
+ - add glob and fx-extra to package blacklist ([5f3a7d7](https://gitlab.com/rxap/packages/commit/5f3a7d7e0bcf4cc6ae2fee0210a458f59a103e36))
31
49
 
50
+ # [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)
32
51
 
33
52
  ### Bug Fixes
34
53
 
35
- * update to nrwl 15.9.4 ([c9ab045](https://gitlab.com/rxap/schematics/commit/c9ab0454484162e633b789a6274d77793179df23))
36
-
54
+ - move GetLatestPackageVersion to @rxap/node-utilities ([56bc441](https://gitlab.com/rxap/packages/commit/56bc441d3af89c5c2a99cd3d300e2f4b55dbb624))
37
55
 
56
+ # [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)
38
57
 
58
+ ### Bug Fixes
39
59
 
60
+ - update package dependency versions ([8479f5c](https://gitlab.com/rxap/packages/commit/8479f5c405a885cc0f300cec6156584e4c65d59c))
61
+ - **update-package-group:** only include @rxap/\* packages ([f4631e3](https://gitlab.com/rxap/packages/commit/f4631e3713ed994c5f2cf5b64fd1563e1d6a22a9))
40
62
 
41
- ## [15.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.0...@rxap/plugin-library@15.0.1) (2023-01-30)
63
+ # 16.0.0-dev.4 (2023-07-10)
42
64
 
43
- **Note:** Version bump only for package @rxap/plugin-library
65
+ ### Bug Fixes
44
66
 
67
+ - **fix-dependencies:** reuse existing project dependency version ([664c64e](https://gitlab.com/rxap/packages/commit/664c64e94d0f5717fa6e78180fbaadb7337f6ffe))
68
+ - **init:** add the fix-dependencies target and update the preversion script ([548740b](https://gitlab.com/rxap/packages/commit/548740b8560320afa69566c54ec709171a6ff7b5))
69
+ - remove scss assets copies if \_index.scss does not exist ([8d6ef93](https://gitlab.com/rxap/packages/commit/8d6ef93f3ec62cf915743a475ed48258e836f49a))
70
+ - restructure and merge mono repos packages, schematics, plugins and nest ([653b4cd](https://gitlab.com/rxap/packages/commit/653b4cd39fc92d322df9b3959651fea0aa6079da))
71
+ - **run-generator:** support dry-run and without-project-argument flags ([7f4d918](https://gitlab.com/rxap/packages/commit/7f4d918e4852131550571779ca25b02c904ad83c))
72
+ - **update-package-group:** use pined version instead of range ([30b1307](https://gitlab.com/rxap/packages/commit/30b130780dde4fba670429e6dd56377cb94f8513))
45
73
 
74
+ # [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)
46
75
 
76
+ ### Bug Fixes
47
77
 
78
+ - remove deprecated pack targetconcept ([39f1869](https://gitlab.com/rxap/schematics/commit/39f18698795cc6f5d8db81b43581c7d75244021f))
48
79
 
49
- # [15.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.3...@rxap/plugin-library@15.0.0) (2022-12-14)
80
+ # [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)
50
81
 
82
+ ### Bug Fixes
51
83
 
52
- ### chore
84
+ - **deps:** update rxap packages to16.x.x ([bd63f0b](https://gitlab.com/rxap/schematics/commit/bd63f0bfe3356eb1d00bb136253789f2e481e04b))
53
85
 
54
- * upgrade to nrwl 15.x.x ([b0694b6](https://gitlab.com/rxap/schematics/commit/b0694b6550730b80fb7356f6c225787fda1ff6be))
86
+ # [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)
55
87
 
88
+ **Note:** Version bump only for package @rxap/plugin-library
56
89
 
57
- ### Features
90
+ # [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)
58
91
 
59
- * **library:** only include direct dependencies on default ([8892585](https://gitlab.com/rxap/schematics/commit/889258508b6a157b049ba9ebd74d6c32f8865331))
92
+ ### Build System
60
93
 
94
+ - upgrade to nrwl 16.x.x ([de73759](https://gitlab.com/rxap/schematics/commit/de737599e984ce6e0dd19776ffbd04ab2c4085f3))
61
95
 
62
96
  ### BREAKING CHANGES
63
97
 
64
- * upgrade nrwl 15.x.x
65
-
98
+ - upgrade nrwl 16.x.x
66
99
 
100
+ ## [15.0.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.1...@rxap/plugin-library@15.0.2) (2023-05-11)
67
101
 
102
+ ### Bug Fixes
68
103
 
104
+ - update to nrwl 15.9.4 ([c9ab045](https://gitlab.com/rxap/schematics/commit/c9ab0454484162e633b789a6274d77793179df23))
69
105
 
70
- ## [14.0.3](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.2...@rxap/plugin-library@14.0.3) (2022-12-14)
106
+ ## [15.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@15.0.0...@rxap/plugin-library@15.0.1) (2023-01-30)
71
107
 
72
108
  **Note:** Version bump only for package @rxap/plugin-library
73
109
 
110
+ # [15.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.3...@rxap/plugin-library@15.0.0) (2022-12-14)
74
111
 
112
+ ### chore
75
113
 
114
+ - upgrade to nrwl 15.x.x ([b0694b6](https://gitlab.com/rxap/schematics/commit/b0694b6550730b80fb7356f6c225787fda1ff6be))
76
115
 
116
+ ### Features
77
117
 
78
- ## [14.0.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.1...@rxap/plugin-library@14.0.2) (2022-10-06)
118
+ - **library:** only include direct dependencies ondefault ([8892585](https://gitlab.com/rxap/schematics/commit/889258508b6a157b049ba9ebd74d6c32f8865331))
79
119
 
120
+ ### BREAKING CHANGES
80
121
 
81
- ### Bug Fixes
122
+ - upgrade nrwl 15.x.x
82
123
 
83
- * update rxap packages to 14.x.x ([eda3337](https://gitlab.com/rxap/schematics/commit/eda3337af2c477126a3d83715cdc7a955c239cb6))
124
+ ## [14.0.3](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.2...@rxap/plugin-library@14.0.3) (2022-12-14)
84
125
 
126
+ **Note:** Version bump only for package @rxap/plugin-library
85
127
 
128
+ ## [14.0.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.1...@rxap/plugin-library@14.0.2) (2022-10-06)
86
129
 
130
+ ### Bug Fixes
87
131
 
132
+ - update rxap packages to14.x.x ([eda3337](https://gitlab.com/rxap/schematics/commit/eda3337af2c477126a3d83715cdc7a955c239cb6))
88
133
 
89
134
  ## [14.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.0...@rxap/plugin-library@14.0.1) (2022-10-06)
90
135
 
91
-
92
136
  ### Bug Fixes
93
137
 
94
- * remove @rxap/utilities dependency ([fa8b3e6](https://gitlab.com/rxap/schematics/commit/fa8b3e667f7c4e5e1a5f15a5d0cc9543da72729d))
95
-
96
-
97
-
98
-
138
+ - remove @rxap/utilitiesdependency ([fa8b3e6](https://gitlab.com/rxap/schematics/commit/fa8b3e667f7c4e5e1a5f15a5d0cc9543da72729d))
99
139
 
100
140
  # [14.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.1...@rxap/plugin-library@14.0.0) (2022-09-08)
101
141
 
102
-
103
142
  ### chore
104
143
 
105
- * upgrade to 14.x.x ([52cccdb](https://gitlab.com/rxap/schematics/commit/52cccdb066599a3c333117107a06169e5d42c604))
106
-
144
+ - upgrade to 14.x.x ([52cccdb](https://gitlab.com/rxap/schematics/commit/52cccdb066599a3c333117107a06169e5d42c604))
107
145
 
108
146
  ### BREAKING CHANGES
109
147
 
110
- * upgrade to 14.x.x
111
-
112
-
113
-
114
-
148
+ - upgrade to 14.x.x
115
149
 
116
150
  ## [13.0.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@13.0.0...@rxap/plugin-library@13.0.1) (2022-09-08)
117
151
 
118
152
  **Note:** Version bump only for package @rxap/plugin-library
119
153
 
120
-
121
-
122
-
123
-
124
154
  # [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)
125
155
 
126
156
  **Note:** Version bump only for package @rxap/plugin-library
127
157
 
128
-
129
-
130
-
131
-
132
158
  # [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)
133
159
 
134
-
135
160
  ### Bug Fixes
136
161
 
137
- * update catch type ([a3a376b](https://gitlab.com/rxap/schematics/commit/a3a376be772f10889a1f7e1afdf18895ce070d9e))
138
- * **update-peer-dependencies:** migrate to use the createProjectGraphAsync if cache is unavailable ([3454d1d](https://gitlab.com/rxap/schematics/commit/3454d1d0f21a201da01169e4bd470811bcbac919))
139
- * **update-peer-dependencies:** update to the new project graph structure ([1b86986](https://gitlab.com/rxap/schematics/commit/1b86986ab259eaa6859f827164c389fd17fa63fc))
140
-
162
+ - update catch type ([a3a376b](https://gitlab.com/rxap/schematics/commit/a3a376be772f10889a1f7e1afdf18895ce070d9e))
163
+ - **update-peer-dependencies:** migrate to use the createProjectGraphAsync if cache isunavailable ([3454d1d](https://gitlab.com/rxap/schematics/commit/3454d1d0f21a201da01169e4bd470811bcbac919))
164
+ - **update-peer-dependencies:** update to the new project graphstructure ([1b86986](https://gitlab.com/rxap/schematics/commit/1b86986ab259eaa6859f827164c389fd17fa63fc))
141
165
 
142
166
  ### Build System
143
167
 
144
- * upgrade to nrwl 13.x.x ([8f07b6b](https://gitlab.com/rxap/schematics/commit/8f07b6b82fb82e8b70fbc82bd91a08d69cc52692))
145
-
168
+ - upgrade to nrwl 13.x.x ([8f07b6b](https://gitlab.com/rxap/schematics/commit/8f07b6b82fb82e8b70fbc82bd91a08d69cc52692))
146
169
 
147
170
  ### BREAKING CHANGES
148
171
 
149
- * update the core nrwl packages to 13.x.x
172
+ - update the core nrwl packages to 13.x.x
150
173
 
151
174
  Signed-off-by: Merzough Münker <mmuenker@digitaix.com>
152
175
 
153
-
154
-
155
-
156
-
157
176
  # [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)
158
177
 
159
-
160
178
  ### Bug Fixes
161
179
 
162
- * update catch type ([4587831](https://gitlab.com/rxap/schematics/commit/45878319c926061dc8995c568278c4ae7a903feb))
163
-
164
-
165
-
166
-
180
+ - update catch type ([4587831](https://gitlab.com/rxap/schematics/commit/45878319c926061dc8995c568278c4ae7a903feb))
167
181
 
168
182
  # [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)
169
183
 
170
-
171
184
  ### Bug Fixes
172
185
 
173
- * **update-peer-dependencies:** migrate to use the createProjectGraphAsync if cache is unavailable ([5307344](https://gitlab.com/rxap/schematics/commit/530734419cd4c05a1c13443da0e0cad0ce510d79))
174
- * **update-peer-dependencies:** update to the new project graph structure ([3cc7378](https://gitlab.com/rxap/schematics/commit/3cc7378eef2372b1caf4c4587a70d6e23e0aadcf))
175
-
186
+ - **update-peer-dependencies:** migrate to use the createProjectGraphAsync if cache isunavailable ([5307344](https://gitlab.com/rxap/schematics/commit/530734419cd4c05a1c13443da0e0cad0ce510d79))
187
+ - **update-peer-dependencies:** update to the new project graphstructure ([3cc7378](https://gitlab.com/rxap/schematics/commit/3cc7378eef2372b1caf4c4587a70d6e23e0aadcf))
176
188
 
177
189
  ### Build System
178
190
 
179
- * upgrade to nrwl 13.x.x ([f6fb1fd](https://gitlab.com/rxap/schematics/commit/f6fb1fde34006136be4dadd72795d2d43207072a))
180
-
191
+ - upgrade to nrwl 13.x.x ([f6fb1fd](https://gitlab.com/rxap/schematics/commit/f6fb1fde34006136be4dadd72795d2d43207072a))
181
192
 
182
193
  ### BREAKING CHANGES
183
194
 
184
- * update the core nrwl packages to 13.x.x
195
+ - update the core nrwl packages to 13.x.x
185
196
 
186
197
  Signed-off-by: Merzough Münker <mmuenker@digitaix.com>
187
198
 
188
-
189
-
190
-
191
-
192
199
  ## [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)
193
200
 
194
201
  **Note:** Version bump only for package @rxap/plugin-library
195
202
 
196
-
197
-
198
-
199
-
200
203
  ## [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)
201
204
 
202
-
203
205
  ### Bug Fixes
204
206
 
205
- * add nrwl package to peer dependencies ([e15f848](https://gitlab.com/rxap/schematics/commit/e15f848369366bad60b63b32c7e71710b1ded826))
206
-
207
-
208
-
209
-
207
+ - add nrwl package to peerdependencies ([e15f848](https://gitlab.com/rxap/schematics/commit/e15f848369366bad60b63b32c7e71710b1ded826))
210
208
 
211
209
  ## [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)
212
210
 
213
-
214
211
  ### Bug Fixes
215
212
 
216
- * add strict tsc compiler option ([a262758](https://gitlab.com/rxap/schematics/commit/a2627582222671e58f6feaed0309d33ab13e6984))
217
-
218
-
219
-
220
-
213
+ - add strict tsc compileroption ([a262758](https://gitlab.com/rxap/schematics/commit/a2627582222671e58f6feaed0309d33ab13e6984))
221
214
 
222
215
  ## [12.4.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.4.0...@rxap/plugin-library@12.4.1) (2021-07-27)
223
216
 
224
-
225
217
  ### Bug Fixes
226
218
 
227
- * replace deprecated schema id property ([cb8dedb](https://gitlab.com/rxap/schematics/commit/cb8dedb0c15c774f6c101df150f0d98242bc511a))
228
-
229
-
230
-
231
-
219
+ - replace deprecated schema idproperty ([cb8dedb](https://gitlab.com/rxap/schematics/commit/cb8dedb0c15c774f6c101df150f0d98242bc511a))
232
220
 
233
221
  # [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)
234
222
 
235
223
  **Note:** Version bump only for package @rxap/plugin-library
236
224
 
237
-
238
-
239
-
240
-
241
225
  # [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)
242
226
 
243
-
244
227
  ### Bug Fixes
245
228
 
246
- * include hidden files in schematics files folder ([028450e](https://gitlab.com/rxap/schematics/commit/028450e11e0f0caeec7ace91e84d45a606ff2dad))
247
-
248
-
249
-
250
-
229
+ - include hidden files in schematics filesfolder ([028450e](https://gitlab.com/rxap/schematics/commit/028450e11e0f0caeec7ace91e84d45a606ff2dad))
251
230
 
252
231
  # [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)
253
232
 
254
-
255
233
  ### Bug Fixes
256
234
 
257
- * **update-package-dependencies:** only update ng-package if exists ([0374698](https://gitlab.com/rxap/schematics/commit/0374698b552356409336b4389e09b16b44746f57))
258
-
235
+ - **update-package-dependencies:** only update ng-package ifexists ([0374698](https://gitlab.com/rxap/schematics/commit/0374698b552356409336b4389e09b16b44746f57))
259
236
 
260
237
  ### Features
261
238
 
262
- * **update-package-dependencies:** add option dependencies ([c7c7fd8](https://gitlab.com/rxap/schematics/commit/c7c7fd83d3f143508009d3af34ed1daac37d90a2))
263
-
264
-
265
-
266
-
239
+ - **update-package-dependencies:** add optiondependencies ([c7c7fd8](https://gitlab.com/rxap/schematics/commit/c7c7fd83d3f143508009d3af34ed1daac37d90a2))
267
240
 
268
241
  ## [12.3.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.3.1...@rxap/plugin-library@12.3.2) (2021-06-23)
269
242
 
270
243
  **Note:** Version bump only for package @rxap/plugin-library
271
244
 
272
-
273
-
274
-
275
-
276
245
  ## [12.3.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.3.0...@rxap/plugin-library@12.3.1) (2021-06-23)
277
246
 
278
-
279
247
  ### Bug Fixes
280
248
 
281
- * mv typescript package to dependencies ([06a7d2b](https://gitlab.com/rxap/schematics/commit/06a7d2bbbf5b0018cacdeb2445942719682c6937))
282
-
283
-
284
-
285
-
249
+ - mv typescript package todependencies ([06a7d2b](https://gitlab.com/rxap/schematics/commit/06a7d2bbbf5b0018cacdeb2445942719682c6937))
286
250
 
287
251
  # [12.3.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.2.0...@rxap/plugin-library@12.3.0) (2021-06-23)
288
252
 
289
-
290
253
  ### Features
291
254
 
292
- * remove lerna dependency ([652fed9](https://gitlab.com/rxap/schematics/commit/652fed9b577a2554e0212320ed78281ef204eb10))
293
-
294
-
295
-
296
-
255
+ - remove lernadependency ([652fed9](https://gitlab.com/rxap/schematics/commit/652fed9b577a2554e0212320ed78281ef204eb10))
297
256
 
298
257
  # [12.2.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.1.2...@rxap/plugin-library@12.2.0) (2021-06-23)
299
258
 
300
-
301
259
  ### Bug Fixes
302
260
 
303
- * mv peerDependencies to dependencies ([97be8bf](https://gitlab.com/rxap/schematics/commit/97be8bf8395ede8e5a50804b9ad7f72fde12bc81))
304
-
261
+ - mv peerDependencies todependencies ([97be8bf](https://gitlab.com/rxap/schematics/commit/97be8bf8395ede8e5a50804b9ad7f72fde12bc81))
305
262
 
306
263
  ### Features
307
264
 
308
- * **update-package-dependencies:** update the package.json dependencies ([6afdf0e](https://gitlab.com/rxap/schematics/commit/6afdf0ed0881b6ff85e720ff1ca0d6cd3f4dbfdd))
309
-
310
-
311
-
312
-
265
+ - **update-package-dependencies:** update the package.jsondependencies ([6afdf0e](https://gitlab.com/rxap/schematics/commit/6afdf0ed0881b6ff85e720ff1ca0d6cd3f4dbfdd))
313
266
 
314
267
  ## [12.1.2](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.1.1...@rxap/plugin-library@12.1.2) (2021-06-23)
315
268
 
316
-
317
269
  ### Bug Fixes
318
270
 
319
- * only write json file if changed ([b39207b](https://gitlab.com/rxap/schematics/commit/b39207b446fde7ea294a3eb1313ed714f6861ece))
320
-
321
-
322
-
323
-
271
+ - only write json file ifchanged ([b39207b](https://gitlab.com/rxap/schematics/commit/b39207b446fde7ea294a3eb1313ed714f6861ece))
324
272
 
325
273
  ## [12.1.1](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.1.0...@rxap/plugin-library@12.1.1) (2021-06-23)
326
274
 
327
-
328
275
  ### Bug Fixes
329
276
 
330
- * set ng-add save target to devDependencies ([c213f21](https://gitlab.com/rxap/schematics/commit/c213f21067e8bb280a48ae726840bfe0f5c4ff11))
331
-
332
-
333
-
334
-
277
+ - set ng-add save target todevDependencies ([c213f21](https://gitlab.com/rxap/schematics/commit/c213f21067e8bb280a48ae726840bfe0f5c4ff11))
335
278
 
336
279
  # [12.1.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@12.0.1...@rxap/plugin-library@12.1.0) (2021-06-23)
337
280
 
338
-
339
281
  ### Bug Fixes
340
282
 
341
- * ensure the peerDependencies property is defined ([90122eb](https://gitlab.com/rxap/schematics/commit/90122eb42382c2761f8124a88d79f3a16e8c5635))
342
- * use correct options property ([2fea2f8](https://gitlab.com/rxap/schematics/commit/2fea2f801c9d3fe4ecceac0a568cfe93cfa42971))
343
-
283
+ - ensure the peerDependencies property isdefined ([90122eb](https://gitlab.com/rxap/schematics/commit/90122eb42382c2761f8124a88d79f3a16e8c5635))
284
+ - use correct optionsproperty ([2fea2f8](https://gitlab.com/rxap/schematics/commit/2fea2f801c9d3fe4ecceac0a568cfe93cfa42971))
344
285
 
345
286
  ### Features
346
287
 
347
- * add update-package-group builder ([e04006b](https://gitlab.com/rxap/schematics/commit/e04006bf53b3988fd110f8e61c899503e0e98c3d))
348
- * add update-peer-dependency builder ([f473dbe](https://gitlab.com/rxap/schematics/commit/f473dbeef0b1fcd5d5bba52ebff8311a6578e7a7))
349
-
350
-
351
-
352
-
288
+ - add update-package-groupbuilder ([e04006b](https://gitlab.com/rxap/schematics/commit/e04006bf53b3988fd110f8e61c899503e0e98c3d))
289
+ - add update-peer-dependencybuilder ([f473dbe](https://gitlab.com/rxap/schematics/commit/f473dbeef0b1fcd5d5bba52ebff8311a6578e7a7))
353
290
 
354
291
  ## 12.0.1 (2021-06-21)
355
292