cloudcommerce 0.0.10 → 0.0.14
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/.husky/commit-msg +0 -0
- package/CHANGELOG.md +13 -0
- package/package.json +10 -10
- package/packages/api/package.json +1 -1
- package/packages/apps/discounts/package.json +1 -1
- package/packages/firebase/package.json +1 -1
- package/packages/storefront/package.json +1 -1
- package/pnpm-lock.yaml +5947 -0
package/.husky/commit-msg
CHANGED
|
File without changes
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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.14](https://github.com/ecomplus/cloud-commerce/compare/v0.0.13...v0.0.14) (2022-06-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **pkgs:** Release with `pnpm` to fix workspace dependencies versions ([b005ab7](https://github.com/ecomplus/cloud-commerce/commit/b005ab7f7a9a2142d0ec0418b9549331372b82d9))
|
|
11
|
+
|
|
12
|
+
### [0.0.13](https://github.com/ecomplus/cloud-commerce/compare/v0.0.12...v0.0.13) (2022-06-24)
|
|
13
|
+
|
|
14
|
+
### [0.0.12](https://github.com/ecomplus/cloud-commerce/compare/v0.0.11...v0.0.12) (2022-06-24)
|
|
15
|
+
|
|
16
|
+
### [0.0.11](https://github.com/ecomplus/cloud-commerce/compare/v0.0.10...v0.0.11) (2022-06-24)
|
|
17
|
+
|
|
5
18
|
### [0.0.10](https://github.com/ecomplus/cloud-commerce/compare/v0.0.9...v0.0.10) (2022-06-24)
|
|
6
19
|
|
|
7
20
|
### [0.0.9](https://github.com/ecomplus/cloud-commerce/compare/v0.0.8...v0.0.9) (2022-06-24)
|
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.14",
|
|
5
5
|
"description": "Open fair-code headless commerce platform: API-first, microservices based, event driven and cloud native",
|
|
6
6
|
"main": "store/functions/index.js",
|
|
7
7
|
"author": "E-Com Club Softwares para E-commerce <ti@e-com.club>",
|
|
@@ -10,16 +10,10 @@
|
|
|
10
10
|
"node": ">=16",
|
|
11
11
|
"pnpm": ">=7"
|
|
12
12
|
},
|
|
13
|
-
"scripts": {
|
|
14
|
-
"postinstall": "husky install",
|
|
15
|
-
"build": "turbo run build",
|
|
16
|
-
"test": "turbo run test",
|
|
17
|
-
"release": "pnpm build && pnpm test && standard-version --commit-all",
|
|
18
|
-
"postpublish": "zx scripts/release.mjs --publish"
|
|
19
|
-
},
|
|
20
13
|
"standard-version": {
|
|
21
14
|
"scripts": {
|
|
22
|
-
"precommit": "zx scripts/release.mjs && git add **/package.json"
|
|
15
|
+
"precommit": "zx scripts/release.mjs && git add **/package.json",
|
|
16
|
+
"posttag": "git push --follow-tags origin main && pnpm publish -r --access public --no-git-checks"
|
|
23
17
|
}
|
|
24
18
|
},
|
|
25
19
|
"devDependencies": {
|
|
@@ -42,5 +36,11 @@
|
|
|
42
36
|
"vite": "^2.9.12",
|
|
43
37
|
"vitest": "^0.15.2",
|
|
44
38
|
"zx": "^7.0.2"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"postinstall": "husky install",
|
|
42
|
+
"build": "turbo run build",
|
|
43
|
+
"test": "turbo run test",
|
|
44
|
+
"release": "pnpm build && pnpm test && standard-version --commit-all"
|
|
45
45
|
}
|
|
46
|
-
}
|
|
46
|
+
}
|