@adobe/aem-cli 16.10.5 → 16.10.7
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 +17 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [16.10.7](https://github.com/adobe/helix-cli/compare/v16.10.6...v16.10.7) (2025-03-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency jose to v6.0.8 ([#2499](https://github.com/adobe/helix-cli/issues/2499)) ([51a613b](https://github.com/adobe/helix-cli/commit/51a613b74f533a699c6716c01d9fa59b34607e68))
|
|
7
|
+
|
|
8
|
+
## [16.10.6](https://github.com/adobe/helix-cli/compare/v16.10.5...v16.10.6) (2025-02-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **docs:** how to migrate from @adobe/helix-cli ([#2497](https://github.com/adobe/helix-cli/issues/2497)) ([0a8f5fe](https://github.com/adobe/helix-cli/commit/0a8f5fed043a0f3af00e8de6dbf6ae45654a88bc))
|
|
14
|
+
|
|
1
15
|
## [16.10.5](https://github.com/adobe/helix-cli/compare/v16.10.4...v16.10.5) (2025-02-25)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -17,6 +17,23 @@ Install `aem` as a global command. You need Node 12.11 or newer.
|
|
|
17
17
|
npm install -g @adobe/aem-cli
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
### Migrating from older version
|
|
21
|
+
|
|
22
|
+
Starting with version 15.0.0, this tool is named `aem` and published as `@adobe/aem-cli`. If you previously had installed this tool under its old name `hlx` aka `@adobe/helix-cli` you might get an error like:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
npm error EEXIST: file already exists
|
|
26
|
+
npm error File exists: /opt/homebrew/bin/hlx
|
|
27
|
+
npm error Remove the existing file and try again, or run npm
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
To solve, first uninstall the old version, then try again:
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
npm uninstall -g @adobe/helix-cli
|
|
34
|
+
npm install -g @adobe/aem-cli
|
|
35
|
+
```
|
|
36
|
+
|
|
20
37
|
## Quick Start
|
|
21
38
|
|
|
22
39
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.10.
|
|
3
|
+
"version": "16.10.7",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"ignore": "7.0.3",
|
|
62
62
|
"ini": "5.0.0",
|
|
63
63
|
"isomorphic-git": "1.29.0",
|
|
64
|
-
"jose": "6.0.
|
|
64
|
+
"jose": "6.0.8",
|
|
65
65
|
"livereload-js": "4.0.2",
|
|
66
66
|
"node-fetch": "3.3.2",
|
|
67
67
|
"open": "10.1.0",
|