@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.
- package/.turbo/turbo-build.log +1 -1
- package/lib/cli.js +2 -0
- package/package.json +2 -2
- package/src/cli.ts +3 -0
package/.turbo/turbo-build.log
CHANGED
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.
|
|
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.
|
|
29
|
+
"@cloudcommerce/api": "0.10.0"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "bash ../../scripts/build-lib.sh"
|
package/src/cli.ts
CHANGED