@aemvite/aem-config 0.2.2 → 0.3.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/CHANGELOG.md +8 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to **@aemvite/aem-config** will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.0] - 2026-06-26
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Breaking:** minimum Node.js tightened to `^22`; Vite peer narrowed to `^8`.
|
|
13
|
+
- Plugin package dependency ranges updated to `^0.2.0`.
|
|
14
|
+
- `esbuild` peer tightened to `^0.28`.
|
|
15
|
+
|
|
8
16
|
## [0.2.2] - 2026-06-26
|
|
9
17
|
|
|
10
18
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aemvite/aem-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Typed config helper, loader, and Vite build orchestrator for AEM clientlib packages.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aem",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"LICENSE"
|
|
44
44
|
],
|
|
45
45
|
"engines": {
|
|
46
|
-
"node": "^
|
|
46
|
+
"node": "^22"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "tsc -p tsconfig.json",
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"prepublishOnly": "npm run build"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@aemvite/vite-plugin-aem-clientlib": "^0.
|
|
56
|
-
"@aemvite/vite-plugin-aem-resources": "^0.
|
|
57
|
-
"@aemvite/vite-plugin-glob": "^0.
|
|
55
|
+
"@aemvite/vite-plugin-aem-clientlib": "^0.2.0",
|
|
56
|
+
"@aemvite/vite-plugin-aem-resources": "^0.2.0",
|
|
57
|
+
"@aemvite/vite-plugin-glob": "^0.2.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"esbuild": "^0.
|
|
61
|
-
"vite": "^
|
|
60
|
+
"esbuild": "^0.28",
|
|
61
|
+
"vite": "^8"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/node": "^22.20.0",
|