@adobe/aem-cli 15.0.2 → 16.0.0
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 +17 -0
- package/README.md +1 -0
- package/package.json +1 -1
- package/src/cli.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# [16.0.0](https://github.com/adobe/helix-cli/compare/v15.0.2...v16.0.0) (2023-10-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 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)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* major release attempt ([44298af](https://github.com/adobe/helix-cli/commit/44298af8d9aa4191c0819f0e0e48e5f668eff8e2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### BREAKING CHANGES
|
|
15
|
+
|
|
16
|
+
* switch to aws backend (#19) (fe09eca)
|
|
17
|
+
|
|
1
18
|
## [15.0.2](https://github.com/adobe/helix-cli/compare/v15.0.1...v15.0.2) (2023-10-18)
|
|
2
19
|
|
|
3
20
|
|
package/README.md
CHANGED
package/package.json
CHANGED
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('
|
|
124
|
+
.env('AEM_')
|
|
125
125
|
.check((a) => envAwareStrict(a, argv.parsed.aliases))
|
|
126
126
|
.showHelpOnFail(true)
|
|
127
127
|
.fail(this._failFn)
|