@adobe/aem-cli 16.2.8 → 16.2.10
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/package.json +7 -7
- package/src/cli.js +5 -0
- package/src/up.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [16.2.10](https://github.com/adobe/helix-cli/compare/v16.2.9...v16.2.10) (2024-03-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* ensure that AEM_NO_OPEN works as expected ([#2324](https://github.com/adobe/helix-cli/issues/2324)) ([c985c13](https://github.com/adobe/helix-cli/commit/c985c138cb343d0fbb729e1121029921915eb4d1)), closes [#2323](https://github.com/adobe/helix-cli/issues/2323)
|
|
7
|
+
|
|
8
|
+
## [16.2.9](https://github.com/adobe/helix-cli/compare/v16.2.8...v16.2.9) (2024-03-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update adobe fixes ([9298959](https://github.com/adobe/helix-cli/commit/9298959abd52d8ea21580fe3423a6c5fb422fc85))
|
|
14
|
+
|
|
1
15
|
## [16.2.8](https://github.com/adobe/helix-cli/compare/v16.2.7...v16.2.8) (2024-02-24)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.2.
|
|
3
|
+
"version": "16.2.10",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@adobe/fetch": "4.1.1",
|
|
42
42
|
"@adobe/helix-log": "6.0.1",
|
|
43
|
-
"@adobe/helix-shared-config": "10.3.
|
|
44
|
-
"@adobe/helix-shared-git": "3.0.
|
|
43
|
+
"@adobe/helix-shared-config": "10.3.12",
|
|
44
|
+
"@adobe/helix-shared-git": "3.0.6",
|
|
45
45
|
"@adobe/helix-shared-indexer": "2.0.19",
|
|
46
46
|
"camelcase": "8.0.0",
|
|
47
47
|
"chalk-template": "1.1.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"cookie": "0.6.0",
|
|
51
51
|
"cookie-parser": "1.4.6",
|
|
52
52
|
"dotenv": "16.4.5",
|
|
53
|
-
"express": "4.18.
|
|
53
|
+
"express": "4.18.3",
|
|
54
54
|
"faye-websocket": "0.11.4",
|
|
55
55
|
"fs-extra": "11.2.0",
|
|
56
56
|
"glob": "10.3.10",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"isomorphic-git": "1.25.6",
|
|
64
64
|
"livereload-js": "4.0.2",
|
|
65
65
|
"node-fetch": "3.3.2",
|
|
66
|
-
"open": "10.0.
|
|
66
|
+
"open": "10.0.4",
|
|
67
67
|
"progress": "2.0.3",
|
|
68
68
|
"proxy-agent": "6.4.0",
|
|
69
69
|
"proxy-from-env": "1.1.0",
|
|
@@ -82,13 +82,13 @@
|
|
|
82
82
|
"@semantic-release/git": "10.0.1",
|
|
83
83
|
"c8": "9.1.0",
|
|
84
84
|
"eslint": "8.57.0",
|
|
85
|
-
"esmock": "2.6.
|
|
85
|
+
"esmock": "2.6.4",
|
|
86
86
|
"husky": "9.0.11",
|
|
87
87
|
"junit-report-builder": "3.2.1",
|
|
88
88
|
"lint-staged": "15.2.2",
|
|
89
89
|
"mocha": "10.3.0",
|
|
90
90
|
"mocha-multi-reporters": "1.5.1",
|
|
91
|
-
"nock": "13.5.
|
|
91
|
+
"nock": "13.5.4",
|
|
92
92
|
"semantic-release": "22.0.12",
|
|
93
93
|
"semantic-release-discord-bot": "^1.1.0",
|
|
94
94
|
"sinon": "17.0.1"
|
package/src/cli.js
CHANGED
|
@@ -31,6 +31,11 @@ function envAwareStrict(args, aliases) {
|
|
|
31
31
|
hlxEnv[camelcase(key.substring(4))] = key;
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
|
+
// setting the AEM_NO_OPEN doesn't seem to set args.open to false automatically...
|
|
35
|
+
if (args.noOpen) {
|
|
36
|
+
// eslint-disable-next-line no-param-reassign
|
|
37
|
+
args.open = false;
|
|
38
|
+
}
|
|
34
39
|
|
|
35
40
|
const unknown = [];
|
|
36
41
|
Object.keys(args).forEach((key) => {
|
package/src/up.js
CHANGED
|
@@ -102,6 +102,9 @@ export default function up() {
|
|
|
102
102
|
executor = new UpCommand(getOrCreateLogger(argv));
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
+
console.log(' open', argv.open);
|
|
106
|
+
console.log('no-open', argv.noOpen);
|
|
107
|
+
|
|
105
108
|
await executor
|
|
106
109
|
.withHttpPort(argv.port)
|
|
107
110
|
.withBindAddr(argv.addr)
|