@adobe/aem-cli 15.0.2 → 16.0.1

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,27 @@
1
+ ## [16.0.1](https://github.com/adobe/helix-cli/compare/v16.0.0...v16.0.1) (2023-10-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update adobe fixes ([2b97665](https://github.com/adobe/helix-cli/commit/2b97665b1f24383ad8e57fd2f1d0fc0021c720e1))
7
+
8
+ # [16.0.0](https://github.com/adobe/helix-cli/compare/v15.0.2...v16.0.0) (2023-10-20)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * ensure proper env prefix ([#2260](https://github.com/adobe/helix-cli/issues/2260)) ([29a42ba](https://github.com/adobe/helix-cli/commit/29a42ba5d182fa6d7410da6fac87327b293618c2)), closes [#2259](https://github.com/adobe/helix-cli/issues/2259)
14
+
15
+
16
+ ### Features
17
+
18
+ * major release attempt ([44298af](https://github.com/adobe/helix-cli/commit/44298af8d9aa4191c0819f0e0e48e5f668eff8e2))
19
+
20
+
21
+ ### BREAKING CHANGES
22
+
23
+ * switch to aws backend (#19) (fe09eca)
24
+
1
25
  ## [15.0.2](https://github.com/adobe/helix-cli/compare/v15.0.1...v15.0.2) (2023-10-18)
2
26
 
3
27
 
package/README.md CHANGED
@@ -145,3 +145,4 @@ If present, `ALL_PROXY` is used as fallback if there is no other match.
145
145
 
146
146
  You can use `npm run check` to run the tests and check whether your code adheres
147
147
  to the aem-cli coding style.
148
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/aem-cli",
3
- "version": "15.0.2",
3
+ "version": "16.0.1",
4
4
  "description": "AEM CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -39,8 +39,8 @@
39
39
  "dependencies": {
40
40
  "@adobe/fetch": "4.1.0",
41
41
  "@adobe/helix-log": "6.0.0",
42
- "@adobe/helix-shared-config": "10.3.5",
43
- "@adobe/helix-shared-git": "3.0.2",
42
+ "@adobe/helix-shared-config": "10.3.6",
43
+ "@adobe/helix-shared-git": "3.0.3",
44
44
  "@adobe/helix-shared-indexer": "2.0.14",
45
45
  "camelcase": "8.0.0",
46
46
  "chalk-template": "1.1.0",
package/src/cli.js CHANGED
@@ -121,7 +121,7 @@ export default class CLI {
121
121
  .scriptName('aem')
122
122
  .usage('Usage: $0 <command> [options]')
123
123
  .parserConfiguration({ 'camel-case-expansion': false })
124
- .env('AEM')
124
+ .env('AEM_')
125
125
  .check((a) => envAwareStrict(a, argv.parsed.aliases))
126
126
  .showHelpOnFail(true)
127
127
  .fail(this._failFn)