@adobe/aem-cli 16.16.14 → 16.16.15
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/package.json +1 -1
- package/src/cli.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [16.16.15](https://github.com/adobe/helix-cli/compare/v16.16.14...v16.16.15) (2025-12-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* use correct package version ([#2655](https://github.com/adobe/helix-cli/issues/2655)) ([a5eac55](https://github.com/adobe/helix-cli/commit/a5eac559b4d3722c577883c272647c2c811b75c3)), closes [#2654](https://github.com/adobe/helix-cli/issues/2654)
|
|
7
|
+
|
|
1
8
|
## [16.16.14](https://github.com/adobe/helix-cli/compare/v16.16.13...v16.16.14) (2025-12-17)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -14,6 +14,7 @@ import camelcase from 'camelcase';
|
|
|
14
14
|
import path from 'path';
|
|
15
15
|
import chalk from 'chalk-template';
|
|
16
16
|
import { resetContext } from './fetch-utils.js';
|
|
17
|
+
import pkgJson from './package.cjs';
|
|
17
18
|
|
|
18
19
|
const MIN_MSG = 'You need at least one command.';
|
|
19
20
|
|
|
@@ -124,6 +125,7 @@ export default class CLI {
|
|
|
124
125
|
await logArgs(argv)
|
|
125
126
|
.strictCommands(true)
|
|
126
127
|
.scriptName('aem')
|
|
128
|
+
.version(pkgJson.version)
|
|
127
129
|
.usage('Usage: $0 <command> [options]')
|
|
128
130
|
.parserConfiguration({ 'camel-case-expansion': false })
|
|
129
131
|
.env('AEM_')
|