@adobe/aem-cli 16.10.36 → 16.10.38

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.10.38](https://github.com/adobe/helix-cli/compare/v16.10.37...v16.10.38) (2025-07-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#2554](https://github.com/adobe/helix-cli/issues/2554)) ([e4745e1](https://github.com/adobe/helix-cli/commit/e4745e1f92300f600a75ca0261ffa61f7bf484b1))
7
+
8
+ ## [16.10.37](https://github.com/adobe/helix-cli/compare/v16.10.36...v16.10.37) (2025-07-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency dotenv to v17 ([#2550](https://github.com/adobe/helix-cli/issues/2550)) ([6e4a46e](https://github.com/adobe/helix-cli/commit/6e4a46ec3cf8544f712c83439e5c927c08bf60df))
14
+
1
15
  ## [16.10.36](https://github.com/adobe/helix-cli/compare/v16.10.35...v16.10.36) (2025-07-01)
2
16
 
3
17
 
package/README.md CHANGED
@@ -82,6 +82,12 @@ $ openssl req -new -newkey rsa:4096 -x509 -sha256 -days 365 -nodes -out server.c
82
82
 
83
83
  this will create 2 files: `server.crt` and `server.key`
84
84
 
85
+ Alternatively, if your browser does not trust the certificate, you can use mkcert to generate a trusted certificate:
86
+ ```bash
87
+ # Install mkcert via Homebrew or your preferred method, then run:
88
+ mkcert -cert-file server.crt -key-file server.key localhost 127.0.0.1
89
+ ```
90
+
85
91
  2. start aem with tls support
86
92
 
87
93
  ```
package/index.js CHANGED
@@ -16,7 +16,7 @@ import CLI from './src/cli.js';
16
16
  import { checkNodeVersion, validateDotEnv } from './src/config/config-utils.js';
17
17
  import { config } from 'dotenv';
18
18
 
19
- config();
19
+ config({ quiet: true });
20
20
 
21
21
  (async () => {
22
22
  await checkNodeVersion();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/aem-cli",
3
- "version": "16.10.36",
3
+ "version": "16.10.38",
4
4
  "description": "AEM CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -50,7 +50,7 @@
50
50
  "compression": "1.8.0",
51
51
  "cookie": "1.0.2",
52
52
  "cookie-parser": "1.4.7",
53
- "dotenv": "16.6.1",
53
+ "dotenv": "17.1.0",
54
54
  "express": "5.1.0",
55
55
  "faye-websocket": "0.11.4",
56
56
  "fs-extra": "11.3.0",
@@ -77,14 +77,14 @@
77
77
  "yargs": "18.0.0"
78
78
  },
79
79
  "devDependencies": {
80
- "@adobe/eslint-config-helix": "3.0.5",
80
+ "@adobe/eslint-config-helix": "3.0.7",
81
81
  "@adobe/helix-shared-dom": "2.0.9",
82
82
  "@eslint/config-helpers": "0.3.0",
83
83
  "@semantic-release/changelog": "6.0.3",
84
84
  "@semantic-release/git": "10.0.1",
85
85
  "c8": "10.1.3",
86
86
  "eslint": "9.4.0",
87
- "esmock": "2.7.0",
87
+ "esmock": "2.7.1",
88
88
  "husky": "9.1.7",
89
89
  "junit-report-builder": "5.1.1",
90
90
  "lint-staged": "16.1.2",