@adobe/aem-cli 16.16.32 → 16.16.33
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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [16.16.33](https://github.com/adobe/helix-cli/compare/v16.16.32...v16.16.33) (2026-04-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency jose to v6.2.2 ([#2701](https://github.com/adobe/helix-cli/issues/2701)) ([8c1ffd0](https://github.com/adobe/helix-cli/commit/8c1ffd093b29aa38a60fae7e43d9984bf3a6539f))
|
|
7
|
+
|
|
1
8
|
## [16.16.32](https://github.com/adobe/helix-cli/compare/v16.16.31...v16.16.32) (2026-04-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.16.
|
|
3
|
+
"version": "16.16.33",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"ignore": "7.0.5",
|
|
67
67
|
"ini": "6.0.0",
|
|
68
68
|
"isomorphic-git": "1.37.4",
|
|
69
|
-
"jose": "6.2.
|
|
69
|
+
"jose": "6.2.2",
|
|
70
70
|
"livereload-js": "4.0.2",
|
|
71
71
|
"node-fetch": "3.3.2",
|
|
72
72
|
"open": "11.0.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"yargs": "18.0.0"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@adobe/eslint-config-helix": "3.0.
|
|
85
|
+
"@adobe/eslint-config-helix": "3.0.24",
|
|
86
86
|
"@eslint/config-helpers": "0.5.3",
|
|
87
87
|
"@semantic-release/changelog": "6.0.3",
|
|
88
88
|
"@semantic-release/git": "10.0.1",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"node_modules/@adobe/eslint-config-helix": {
|
|
25
|
-
"version": "3.0.
|
|
26
|
-
"resolved": "https://registry.npmjs.org/@adobe/eslint-config-helix/-/eslint-config-helix-3.0.
|
|
27
|
-
"integrity": "sha512-
|
|
25
|
+
"version": "3.0.24",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/@adobe/eslint-config-helix/-/eslint-config-helix-3.0.24.tgz",
|
|
27
|
+
"integrity": "sha512-JspRdcd9JVlIcj1FTVvX1+tP9QbgENUdjVUqQcYBS0KesLWgLemSWn3LL4bsBvO33QrGo/DySk3/0zFXRAWXRw==",
|
|
28
28
|
"dev": true,
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"dependencies": {
|
package/src/server/utils.js
CHANGED
|
@@ -714,9 +714,15 @@ window.LiveReloadOptions = {
|
|
|
714
714
|
|
|
715
715
|
// Build final metadata object with computed values
|
|
716
716
|
const finalMetadata = { ...metadata };
|
|
717
|
-
if (title)
|
|
718
|
-
|
|
719
|
-
|
|
717
|
+
if (title) {
|
|
718
|
+
finalMetadata.title = title;
|
|
719
|
+
}
|
|
720
|
+
if (description) {
|
|
721
|
+
finalMetadata.description = description;
|
|
722
|
+
}
|
|
723
|
+
if (image) {
|
|
724
|
+
finalMetadata.image = image;
|
|
725
|
+
}
|
|
720
726
|
|
|
721
727
|
// Remove special properties that shouldn't become meta tags
|
|
722
728
|
delete finalMetadata['title:suffix'];
|