@rxap/plugin-angular 16.1.0-dev.1 → 16.1.0-dev.11
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 +67 -0
- package/LICENSE.md +621 -0
- package/README.md +67 -1
- package/executors.json +14 -0
- package/generators.json +27 -0
- package/package.json +28 -14
- package/src/executors/check-ng-package/executor.d.ts +5 -0
- package/src/executors/check-ng-package/executor.js +30 -0
- package/src/executors/check-ng-package/executor.js.map +1 -0
- package/src/executors/check-ng-package/schema.d.ts +1 -0
- package/src/executors/check-ng-package/schema.json +9 -0
- package/src/executors/tailwind/executor.d.ts +5 -0
- package/src/executors/tailwind/executor.js +29 -0
- package/src/executors/tailwind/executor.js.map +1 -0
- package/src/executors/tailwind/schema.d.ts +6 -0
- package/src/executors/tailwind/schema.json +26 -0
- package/src/generators/fix-schematic/index.d.ts +2 -0
- package/src/generators/fix-schematic/index.js +7 -0
- package/src/generators/fix-schematic/index.js.map +1 -0
- package/src/generators/init/index.d.ts +2 -0
- package/src/generators/init/index.js +7 -0
- package/src/generators/init/index.js.map +1 -0
- package/src/generators/init-application/files/shared/angular.Dockerfile +3 -0
- package/src/generators/init-application/files/shared/configuration/.gitkeep +0 -0
- package/src/generators/init-application/generator.js +23 -17
- package/src/generators/init-application/generator.js.map +1 -1
- package/src/generators/init-application/index.d.ts +2 -0
- package/src/generators/init-application/index.js +7 -0
- package/src/generators/init-application/index.js.map +1 -0
- package/src/generators/init-library/generator.js +74 -20
- package/src/generators/init-library/generator.js.map +1 -1
- package/src/generators/init-library/index.d.ts +2 -0
- package/src/generators/init-library/index.js +7 -0
- package/src/generators/init-library/index.js.map +1 -0
- package/src/generators/schematic/index.d.ts +2 -0
- package/src/generators/schematic/index.js +7 -0
- package/src/generators/schematic/index.js.map +1 -0
- package/src/generators/init-application/files/shared/assets/Dockerfile +0 -5
- package/src/generators/init-application/files/shared/assets/nginx.conf +0 -74
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,73 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [16.1.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.10...@rxap/plugin-angular@16.1.0-dev.11) (2023-08-17)
|
|
7
|
+
|
|
8
|
+
### Reverts
|
|
9
|
+
|
|
10
|
+
- change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
|
|
11
|
+
|
|
12
|
+
# [16.1.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.9...@rxap/plugin-angular@16.1.0-dev.10) (2023-08-16)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
|
|
17
|
+
|
|
18
|
+
# [16.1.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.8...@rxap/plugin-angular@16.1.0-dev.9) (2023-08-15)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- add docker file option to angular docker targets ([d3abdfa](https://gitlab.com/rxap/packages/commit/d3abdfa312c549ee7a43bba741360b4e7d943268))
|
|
23
|
+
|
|
24
|
+
# [16.1.0-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.7...@rxap/plugin-angular@16.1.0-dev.8) (2023-08-14)
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
- use utility docker image for frontend containers ([bb1ca18](https://gitlab.com/rxap/packages/commit/bb1ca18661b4624de822bf5468ee4d090fc6112c))
|
|
29
|
+
|
|
30
|
+
# [16.1.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.6...@rxap/plugin-angular@16.1.0-dev.7) (2023-08-06)
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
- expose generators as schematics ([679ca36](https://gitlab.com/rxap/packages/commit/679ca36d3712a11e4dc838762bca2f7c471e1e04))
|
|
35
|
+
|
|
36
|
+
# [16.1.0-dev.6](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.5...@rxap/plugin-angular@16.1.0-dev.6) (2023-08-04)
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
- add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
|
|
41
|
+
|
|
42
|
+
# [16.1.0-dev.5](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.4...@rxap/plugin-angular@16.1.0-dev.5) (2023-08-04)
|
|
43
|
+
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
|
|
46
|
+
- ensure projects are buildable or publishable ([781a8b7](https://gitlab.com/rxap/packages/commit/781a8b77d9e7f74493347516b5e678a42e1e32df))
|
|
47
|
+
- remove nx dependency ([5cc2200](https://gitlab.com/rxap/packages/commit/5cc2200ca3f12ef39bb959f98730975978b5194e))
|
|
48
|
+
- run gitlab ci generators on application init ([9a15981](https://gitlab.com/rxap/packages/commit/9a15981fd5b573db47259014b2582373867179f2))
|
|
49
|
+
|
|
50
|
+
# [16.1.0-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.3...@rxap/plugin-angular@16.1.0-dev.4) (2023-08-03)
|
|
51
|
+
|
|
52
|
+
### Bug Fixes
|
|
53
|
+
|
|
54
|
+
- add build tailwind default inputs and outputs ([07b5e8f](https://gitlab.com/rxap/packages/commit/07b5e8f7a3db4b3fbc6d5e742785144de58971e1))
|
|
55
|
+
- create default application configuration folder ([eae2d9d](https://gitlab.com/rxap/packages/commit/eae2d9d009cd94487a0edb55b0100f1d32c1eea7))
|
|
56
|
+
|
|
57
|
+
### Features
|
|
58
|
+
|
|
59
|
+
- add new executor check-ng-package ([871a3e5](https://gitlab.com/rxap/packages/commit/871a3e5a3bae51009046f915c5db36e9f7062f0d))
|
|
60
|
+
|
|
61
|
+
# [16.1.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.2...@rxap/plugin-angular@16.1.0-dev.3) (2023-08-01)
|
|
62
|
+
|
|
63
|
+
### Bug Fixes
|
|
64
|
+
|
|
65
|
+
- add browser-tailwind as imp dep if project has tailwind configuration ([6ea13c5](https://gitlab.com/rxap/packages/commit/6ea13c5f9b4e652436bf1da879b564d1ed7b8061))
|
|
66
|
+
|
|
67
|
+
# [16.1.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.1...@rxap/plugin-angular@16.1.0-dev.2) (2023-08-01)
|
|
68
|
+
|
|
69
|
+
### Features
|
|
70
|
+
|
|
71
|
+
- add tailwind generator ([7834bf4](https://gitlab.com/rxap/packages/commit/7834bf4ac81c730553d196b5f2f823e8dfe83dd8))
|
|
72
|
+
|
|
6
73
|
# [16.1.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.0...@rxap/plugin-angular@16.1.0-dev.1) (2023-08-01)
|
|
7
74
|
|
|
8
75
|
### Bug Fixes
|