@cloudcommerce/cli 0.0.20 → 0.0.23

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,5 +1,5 @@
1
- @cloudcommerce/cli:build: cache hit, replaying output 7b9b2aeabcb7abc6
1
+ @cloudcommerce/cli:build: cache hit, replaying output 49d49bc5af1cebfd
2
2
  @cloudcommerce/cli:build: 
3
- @cloudcommerce/cli:build: > @cloudcommerce/cli@0.0.19 build /home/leo/code/ecomplus/cloud-commerce/packages/cli
3
+ @cloudcommerce/cli:build: > @cloudcommerce/cli@0.0.22 build /home/leo/code/ecomplus/cloud-commerce/packages/cli
4
4
  @cloudcommerce/cli:build: > sh ../../scripts/build-lib.sh
5
5
  @cloudcommerce/cli:build: 
package/lib/index.js CHANGED
@@ -14,7 +14,7 @@ export default async () => {
14
14
  }
15
15
  return opts;
16
16
  }, '');
17
- const $firebase = async (cmd) => $`npx firebase-tools ${cmd}${options}`;
17
+ const $firebase = async (cmd) => $`firebase ${cmd}${options}`;
18
18
  if (argv._.includes('serve')) {
19
19
  return $firebase('emulators:start');
20
20
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudcommerce/cli",
3
3
  "type": "module",
4
- "version": "0.0.20",
4
+ "version": "0.0.23",
5
5
  "description": "E-Com Plus Cloud Commerce CLI tools",
6
6
  "bin": {
7
7
  "cloudcommerce": "./bin/run.mjs"
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "homepage": "https://github.com/ecomplus/cloud-commerce/tree/main/packages/cli#readme",
21
21
  "dependencies": {
22
- "zx": "^7.0.3"
22
+ "zx": "^7.0.7"
23
23
  },
24
24
  "scripts": {
25
25
  "build": "sh ../../scripts/build-lib.sh"
package/src/index.ts CHANGED
@@ -15,7 +15,7 @@ export default async () => {
15
15
  }
16
16
  return opts;
17
17
  }, '');
18
- const $firebase = async (cmd: string) => $`npx firebase-tools ${cmd}${options}`;
18
+ const $firebase = async (cmd: string) => $`firebase ${cmd}${options}`;
19
19
 
20
20
  if (argv._.includes('serve')) {
21
21
  return $firebase('emulators:start');