@ng-zen/cli 19.4.0 → 20.0.0-next.1
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 +10 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [20.0.0-next.1](https://github.com/kstepien3/ng-zen/compare/v19.4.0...v20.0.0-next.1) (2025-07-15)
|
|
2
|
+
|
|
3
|
+
### ⚠ BREAKING CHANGES
|
|
4
|
+
|
|
5
|
+
* **angular:** upgrade to v20 (#241)
|
|
6
|
+
|
|
7
|
+
### 🏗️ Build Changes
|
|
8
|
+
|
|
9
|
+
* **angular:** upgrade to v20 ([#241](https://github.com/kstepien3/ng-zen/issues/241)) ([a97126c](https://github.com/kstepien3/ng-zen/commit/a97126cbe780cb6fca9fe6c7944aa70cb86b5273))
|
|
10
|
+
|
|
1
11
|
## [19.4.0](https://github.com/kstepien3/ng-zen/compare/v19.3.0...v19.4.0) (2025-07-05)
|
|
2
12
|
|
|
3
13
|
### 🚀 New Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-zen/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "20.0.0-next.1",
|
|
4
4
|
"description": "A CLI tool for generating customizable, modern Angular UI components using schematics.",
|
|
5
5
|
"license": "BSD-2-Clause",
|
|
6
6
|
"private": false,
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"schematics": "./schematics/collection.json",
|
|
36
36
|
"packageManager": "pnpm@10.0.0",
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@angular/common": ">=
|
|
39
|
-
"@angular/core": ">=
|
|
38
|
+
"@angular/common": ">=20.0.0",
|
|
39
|
+
"@angular/core": ">=20.0.0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@angular-devkit/core": "^
|
|
43
|
-
"@angular-devkit/schematics": "^
|
|
42
|
+
"@angular-devkit/core": "^20.1.0",
|
|
43
|
+
"@angular-devkit/schematics": "^20.1.0",
|
|
44
44
|
"tslib": "^2.8.1"
|
|
45
45
|
}
|
|
46
46
|
}
|