@adobe/aem-cli 16.16.1 → 16.16.2
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 +7 -0
- package/package.json +1 -1
- package/src/server/utils.js +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [16.16.2](https://github.com/adobe/helix-cli/compare/v16.16.1...v16.16.2) (2025-11-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **html-folder:** add missing <title> tag for .plain.html files ([c7fe861](https://github.com/adobe/helix-cli/commit/c7fe8619a89acea24c86076cfa17af506a4d257d))
|
|
7
|
+
|
|
1
8
|
## [16.16.1](https://github.com/adobe/helix-cli/compare/v16.16.0...v16.16.1) (2025-11-14)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/server/utils.js
CHANGED
|
@@ -725,6 +725,11 @@ window.LiveReloadOptions = {
|
|
|
725
725
|
const ogFields = ['title', 'description', 'image', 'url'];
|
|
726
726
|
let metaTags = '';
|
|
727
727
|
|
|
728
|
+
// Add <title> tag if title exists
|
|
729
|
+
if (title) {
|
|
730
|
+
metaTags += `<title>${utils.escapeHtml(title)}</title>`;
|
|
731
|
+
}
|
|
732
|
+
|
|
728
733
|
// eslint-disable-next-line no-restricted-syntax
|
|
729
734
|
for (const [key, value] of Object.entries(finalMetadata)) {
|
|
730
735
|
// Skip empty values
|