@adobe/aem-cli 16.10.5 → 16.10.6

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,10 @@
1
+ ## [16.10.6](https://github.com/adobe/helix-cli/compare/v16.10.5...v16.10.6) (2025-02-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **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))
7
+
1
8
  ## [16.10.5](https://github.com/adobe/helix-cli/compare/v16.10.4...v16.10.5) (2025-02-25)
2
9
 
3
10
 
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.5",
3
+ "version": "16.10.6",
4
4
  "description": "AEM CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",