@adobe/aem-cli 16.2.10 → 16.2.12
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 +3 -3
- package/src/up.js +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [16.2.12](https://github.com/adobe/helix-cli/compare/v16.2.11...v16.2.12) (2024-03-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([fb4136e](https://github.com/adobe/helix-cli/commit/fb4136ecb67af081a0d05d7194b00696f8d72b12))
|
|
7
|
+
|
|
8
|
+
## [16.2.11](https://github.com/adobe/helix-cli/compare/v16.2.10...v16.2.11) (2024-03-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* remove leftover console.log statements ([#2325](https://github.com/adobe/helix-cli/issues/2325)) ([23b9c5d](https://github.com/adobe/helix-cli/commit/23b9c5d6d9c8a5c1f28ce39a52162767d9d70750))
|
|
14
|
+
|
|
1
15
|
## [16.2.10](https://github.com/adobe/helix-cli/compare/v16.2.9...v16.2.10) (2024-03-07)
|
|
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.12",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
"http-proxy-agent": "7.0.2",
|
|
60
60
|
"https-proxy-agent": "7.0.4",
|
|
61
61
|
"ignore": "5.3.1",
|
|
62
|
-
"ini": "4.1.
|
|
62
|
+
"ini": "4.1.2",
|
|
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.1.0",
|
|
67
67
|
"progress": "2.0.3",
|
|
68
68
|
"proxy-agent": "6.4.0",
|
|
69
69
|
"proxy-from-env": "1.1.0",
|
package/src/up.js
CHANGED
|
@@ -102,9 +102,6 @@ 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
|
-
|
|
108
105
|
await executor
|
|
109
106
|
.withHttpPort(argv.port)
|
|
110
107
|
.withBindAddr(argv.addr)
|