@adobe/aem-cli 16.7.18 → 16.7.19
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/README.md +13 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [16.7.19](https://github.com/adobe/helix-cli/compare/v16.7.18...v16.7.19) (2024-11-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([b9d5f27](https://github.com/adobe/helix-cli/commit/b9d5f279d9349fa409299cc175805d909930091f))
|
|
7
|
+
|
|
1
8
|
## [16.7.18](https://github.com/adobe/helix-cli/compare/v16.7.17...v16.7.18) (2024-10-29)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ Usage: aem <command> [options]
|
|
|
25
25
|
|
|
26
26
|
Commands:
|
|
27
27
|
aem up Run a AEM development server
|
|
28
|
+
aem import Run the AEM import server
|
|
28
29
|
|
|
29
30
|
Options:
|
|
30
31
|
--version Show version number [boolean]
|
|
@@ -138,6 +139,17 @@ If present, `ALL_PROXY` is used as fallback if there is no other match.
|
|
|
138
139
|
| `--tls-key` | `AEM_TLS_KEY` | undefined | Path to .key file (for enabling TLS) |
|
|
139
140
|
| `--tls-cert` | `AEM_TLS_CERT` | undefined | Path to .pem file (for enabling TLS) |
|
|
140
141
|
|
|
142
|
+
## Starting an import
|
|
143
|
+
|
|
144
|
+
The AEM Importer is an application that supports importing content to AEM.
|
|
145
|
+
|
|
146
|
+
```
|
|
147
|
+
$ cd <my-cool-project>
|
|
148
|
+
$ aem import
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
Read the full AEM Importer [documentation](https://github.com/adobe/helix-importer-ui).
|
|
152
|
+
|
|
141
153
|
# Developing AEM CLI
|
|
142
154
|
|
|
143
155
|
## Testing
|
|
@@ -168,4 +180,4 @@ export NODE_EXTRA_CA_CERTS=my-ca.crt
|
|
|
168
180
|
aem up
|
|
169
181
|
```
|
|
170
182
|
|
|
171
|
-
This will make Node.js trust the server certificate and `aem up` should work.
|
|
183
|
+
This will make Node.js trust the server certificate and `aem up` should work.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.7.
|
|
3
|
+
"version": "16.7.19",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"camelcase": "8.0.0",
|
|
47
47
|
"chalk-template": "1.1.0",
|
|
48
48
|
"chokidar": "4.0.1",
|
|
49
|
-
"compression": "1.7.
|
|
49
|
+
"compression": "1.7.5",
|
|
50
50
|
"cookie": "1.0.1",
|
|
51
51
|
"cookie-parser": "1.4.7",
|
|
52
52
|
"dotenv": "16.4.5",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"husky": "9.1.6",
|
|
86
86
|
"junit-report-builder": "5.1.1",
|
|
87
87
|
"lint-staged": "15.2.10",
|
|
88
|
-
"mocha": "10.
|
|
88
|
+
"mocha": "10.8.2",
|
|
89
89
|
"mocha-multi-reporters": "1.5.1",
|
|
90
90
|
"nock": "13.5.5",
|
|
91
91
|
"semantic-release": "24.2.0",
|