@adobe/aem-cli 16.10.37 → 16.10.39
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 +15 -0
- package/README.md +6 -0
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [16.10.39](https://github.com/adobe/helix-cli/compare/v16.10.38...v16.10.39) (2025-07-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([#2557](https://github.com/adobe/helix-cli/issues/2557)) ([fbcb860](https://github.com/adobe/helix-cli/commit/fbcb860a8d8f7beed94d5ff40f7a926d8652c891))
|
|
7
|
+
* remove shared dom ([#2558](https://github.com/adobe/helix-cli/issues/2558)) ([788d140](https://github.com/adobe/helix-cli/commit/788d1409a4f15a6fbbb45440484464f6fb24c772))
|
|
8
|
+
|
|
9
|
+
## [16.10.38](https://github.com/adobe/helix-cli/compare/v16.10.37...v16.10.38) (2025-07-08)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **deps:** update external fixes ([#2554](https://github.com/adobe/helix-cli/issues/2554)) ([e4745e1](https://github.com/adobe/helix-cli/commit/e4745e1f92300f600a75ca0261ffa61f7bf484b1))
|
|
15
|
+
|
|
1
16
|
## [16.10.37](https://github.com/adobe/helix-cli/compare/v16.10.36...v16.10.37) (2025-07-02)
|
|
2
17
|
|
|
3
18
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.10.
|
|
3
|
+
"version": "16.10.39",
|
|
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": "17.0
|
|
53
|
+
"dotenv": "17.2.0",
|
|
54
54
|
"express": "5.1.0",
|
|
55
55
|
"faye-websocket": "0.11.4",
|
|
56
56
|
"fs-extra": "11.3.0",
|
|
@@ -77,21 +77,20 @@
|
|
|
77
77
|
"yargs": "18.0.0"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@adobe/eslint-config-helix": "3.0.
|
|
81
|
-
"@adobe/helix-shared-dom": "2.0.9",
|
|
80
|
+
"@adobe/eslint-config-helix": "3.0.7",
|
|
82
81
|
"@eslint/config-helpers": "0.3.0",
|
|
83
82
|
"@semantic-release/changelog": "6.0.3",
|
|
84
83
|
"@semantic-release/git": "10.0.1",
|
|
85
84
|
"c8": "10.1.3",
|
|
86
85
|
"eslint": "9.4.0",
|
|
87
|
-
"esmock": "2.7.
|
|
86
|
+
"esmock": "2.7.1",
|
|
88
87
|
"husky": "9.1.7",
|
|
89
88
|
"junit-report-builder": "5.1.1",
|
|
90
89
|
"lint-staged": "16.1.2",
|
|
91
90
|
"mocha": "11.7.1",
|
|
92
91
|
"mocha-multi-reporters": "1.5.1",
|
|
93
92
|
"nock": "13.5.6",
|
|
94
|
-
"semantic-release": "24.2.
|
|
93
|
+
"semantic-release": "24.2.7",
|
|
95
94
|
"semantic-release-discord-bot": "^1.1.0",
|
|
96
95
|
"sinon": "21.0.0"
|
|
97
96
|
},
|