@adobe/aem-cli 16.2.10 → 16.2.11
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/up.js +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [16.2.11](https://github.com/adobe/helix-cli/compare/v16.2.10...v16.2.11) (2024-03-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove leftover console.log statements ([#2325](https://github.com/adobe/helix-cli/issues/2325)) ([23b9c5d](https://github.com/adobe/helix-cli/commit/23b9c5d6d9c8a5c1f28ce39a52162767d9d70750))
|
|
7
|
+
|
|
1
8
|
## [16.2.10](https://github.com/adobe/helix-cli/compare/v16.2.9...v16.2.10) (2024-03-07)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
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)
|