@cloudcommerce/cli 0.9.1 → 0.10.0

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @cloudcommerce/cli@0.9.0 build /home/leo/code/ecomplus/cloud-commerce/packages/cli
2
+ > @cloudcommerce/cli@0.9.1 build /home/leo/code/ecomplus/cloud-commerce/packages/cli
3
3
  > bash ../../scripts/build-lib.sh
4
4
 
package/lib/cli.js CHANGED
@@ -9,6 +9,8 @@ import { siginGcloudAndSetIAM, createServiceAccountKey } from './setup-gcloud.js
9
9
  import createGhSecrets from './setup-gh.js';
10
10
 
11
11
  const { FIREBASE_PROJECT_ID, GOOGLE_APPLICATION_CREDENTIALS, GITHUB_TOKEN } = process.env;
12
+ // https://github.com/google/zx/issues/124
13
+ process.env.FORCE_COLOR = '3';
12
14
  const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
13
15
  const pwd = process.cwd();
14
16
  let projectId = FIREBASE_PROJECT_ID;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudcommerce/cli",
3
3
  "type": "module",
4
- "version": "0.9.1",
4
+ "version": "0.10.0",
5
5
  "description": "E-Com Plus Cloud Commerce CLI tools",
6
6
  "bin": {
7
7
  "cloudcommerce": "./bin/run.mjs"
@@ -26,7 +26,7 @@
26
26
  "libsodium-wrappers": "^0.7.11",
27
27
  "md5": "^2.3.0",
28
28
  "zx": "^7.2.1",
29
- "@cloudcommerce/api": "0.9.1"
29
+ "@cloudcommerce/api": "0.10.0"
30
30
  },
31
31
  "scripts": {
32
32
  "build": "bash ../../scripts/build-lib.sh"
package/src/cli.ts CHANGED
@@ -18,6 +18,9 @@ const {
18
18
  GITHUB_TOKEN,
19
19
  } = process.env;
20
20
 
21
+ // https://github.com/google/zx/issues/124
22
+ process.env.FORCE_COLOR = '3';
23
+
21
24
  const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
22
25
  const pwd = process.cwd();
23
26