@adobe/aem-cli 16.16.1 → 16.16.3

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,17 @@
1
+ ## [16.16.3](https://github.com/adobe/helix-cli/compare/v16.16.2...v16.16.3) (2025-11-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency glob to v11.1.0 [security] ([#2639](https://github.com/adobe/helix-cli/issues/2639)) ([7021b7b](https://github.com/adobe/helix-cli/commit/7021b7b049b6e8ff38a45f840cf632e6552be948))
7
+
8
+ ## [16.16.2](https://github.com/adobe/helix-cli/compare/v16.16.1...v16.16.2) (2025-11-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **html-folder:** add missing <title> tag for .plain.html files ([c7fe861](https://github.com/adobe/helix-cli/commit/c7fe8619a89acea24c86076cfa17af506a4d257d))
14
+
1
15
  ## [16.16.1](https://github.com/adobe/helix-cli/compare/v16.16.0...v16.16.1) (2025-11-14)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/aem-cli",
3
- "version": "16.16.1",
3
+ "version": "16.16.3",
4
4
  "description": "AEM CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -58,7 +58,7 @@
58
58
  "express": "5.1.0",
59
59
  "faye-websocket": "0.11.4",
60
60
  "fs-extra": "11.3.2",
61
- "glob": "11.0.3",
61
+ "glob": "11.1.0",
62
62
  "glob-to-regexp": "0.4.1",
63
63
  "hast-util-select": "6.0.4",
64
64
  "http-proxy-agent": "7.0.2",
@@ -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