@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 +14 -0
- package/README.md +6 -0
- package/index.js +1 -1
- package/package.json +4 -4
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.10.
|
|
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": "
|
|
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.
|
|
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.
|
|
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",
|