cloudcommerce 0.0.21 → 0.0.22
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 +8 -0
- package/action.yml +1 -1
- package/package.json +1 -1
- package/packages/api/package.json +1 -1
- package/packages/apps/discounts/package.json +1 -1
- package/packages/cli/lib/index.js +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/cli/src/index.ts +1 -1
- package/packages/firebase/package.json +1 -1
- package/packages/storefront/package.json +1 -1
- package/pnpm-lock.yaml +3770 -165
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.22](https://github.com/ecomplus/cloud-commerce/compare/v0.0.21...v0.0.22) (2022-07-09)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **cli:** Run `firebase` instead of `npx firebase-tools` ([f0f4be5](https://github.com/ecomplus/cloud-commerce/commit/f0f4be5f55fa6552dc9ed142b253f8119defb296))
|
|
11
|
+
* **gh-action:** Install `firebase-tools` with specific semver ([51e175f](https://github.com/ecomplus/cloud-commerce/commit/51e175f5c4227badcb868a9ee2bdaaa09b3b0017))
|
|
12
|
+
|
|
5
13
|
### [0.0.21](https://github.com/ecomplus/cloud-commerce/compare/v0.0.20...v0.0.21) (2022-07-09)
|
|
6
14
|
|
|
7
15
|
|
package/action.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.22",
|
|
5
5
|
"description": "Open fair-code headless commerce platform: API-first, microservices based, event driven and cloud native",
|
|
6
6
|
"main": "packages/api/lib/index.js",
|
|
7
7
|
"author": "E-Com Club Softwares para E-commerce <ti@e-com.club>",
|
|
@@ -14,7 +14,7 @@ export default async () => {
|
|
|
14
14
|
}
|
|
15
15
|
return opts;
|
|
16
16
|
}, '');
|
|
17
|
-
const $firebase = async (cmd) => $`
|
|
17
|
+
const $firebase = async (cmd) => $`firebase ${cmd}${options}`;
|
|
18
18
|
if (argv._.includes('serve')) {
|
|
19
19
|
return $firebase('emulators:start');
|
|
20
20
|
}
|
|
@@ -15,7 +15,7 @@ export default async () => {
|
|
|
15
15
|
}
|
|
16
16
|
return opts;
|
|
17
17
|
}, '');
|
|
18
|
-
const $firebase = async (cmd: string) => $`
|
|
18
|
+
const $firebase = async (cmd: string) => $`firebase ${cmd}${options}`;
|
|
19
19
|
|
|
20
20
|
if (argv._.includes('serve')) {
|
|
21
21
|
return $firebase('emulators:start');
|