@adobe/aem-cli 16.2.9 → 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 CHANGED
@@ -1,3 +1,10 @@
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
+
1
8
  ## [16.2.9](https://github.com/adobe/helix-cli/compare/v16.2.8...v16.2.9) (2024-03-02)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/aem-cli",
3
- "version": "16.2.9",
3
+ "version": "16.2.10",
4
4
  "description": "AEM CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",
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)