ngx-devkit-builders 0.1.0 → 1.0.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/README.md +8 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
This package contains Architect builders used to build and test Angular applications and libraries.
|
|
15
15
|
|
|
16
|
-
> ✓ _Angular
|
|
16
|
+
> ✓ _Angular 17 compatible_
|
|
17
17
|
|
|
18
18
|
## Builders
|
|
19
19
|
|
|
@@ -56,6 +56,13 @@ _More builders can be added in the future._
|
|
|
56
56
|
ng run your-project-name:version
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
## Compatibility
|
|
60
|
+
|
|
61
|
+
| Angular | ngx-app-version | Install |
|
|
62
|
+
| ------- | --------------- | ---------------------------- |
|
|
63
|
+
| >= 17 | 1.x | `yarn add ngx-app-version` |
|
|
64
|
+
| >= 16 | 0.x | `yarn add ngx-app-version@0` |
|
|
65
|
+
|
|
59
66
|
## License
|
|
60
67
|
|
|
61
68
|
Copyright © 2022 - 2023 [Dominik Hladik](https://github.com/Celtian)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-devkit-builders",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Dominik Hladík",
|
|
6
6
|
"email": "dominik.hladik@seznam.cz",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"builders": "builders.json",
|
|
13
13
|
"scripts": {},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@angular-devkit/architect": "^0.
|
|
16
|
-
"@angular-devkit/core": "^
|
|
15
|
+
"@angular-devkit/architect": "^0.1700.8",
|
|
16
|
+
"@angular-devkit/core": "^17.0.8"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {},
|
|
19
19
|
"homepage": "https://github.com/Celtian/ngx-devkit-builders#readme",
|