@adobe/aem-cli 16.2.9 → 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 CHANGED
@@ -1,3 +1,17 @@
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
+
8
+ ## [16.2.10](https://github.com/adobe/helix-cli/compare/v16.2.9...v16.2.10) (2024-03-07)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * 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)
14
+
1
15
  ## [16.2.9](https://github.com/adobe/helix-cli/compare/v16.2.8...v16.2.9) (2024-03-02)
2
16
 
3
17
 
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.11",
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) => {