cloudcommerce 2.18.1 → 2.18.3
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 +17 -0
- package/package.json +6 -6
- package/scripts/release.mjs +2 -2
- package/scripts/on-version.sh +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.18.3](https://github.com/ecomplus/cloud-commerce/compare/v2.18.1...v2.18.3) (2024-05-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **custom-shipping:** Properly proceeding on checked shipping rules array ([370aeb7](https://github.com/ecomplus/cloud-commerce/commit/370aeb791de44a398c29f4e531b6b39ecba75516))
|
|
11
|
+
* **custom-shipping:** Simple zip code validation with BR country code ([e7cbae7](https://github.com/ecomplus/cloud-commerce/commit/e7cbae7ee46fbdb8a57097377620c92620b57dce))
|
|
12
|
+
* **modules:** Minor fixes handling shipping services and failure debug ([df48085](https://github.com/ecomplus/cloud-commerce/commit/df48085e515c27894946b16ff2909e2f38d69d05))
|
|
13
|
+
|
|
14
|
+
## [2.18.2](https://github.com/ecomplus/cloud-commerce/compare/v2.18.1...v2.18.2) (2024-05-18)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **custom-shipping:** Simple zip code validation with BR country code ([e7cbae7](https://github.com/ecomplus/cloud-commerce/commit/e7cbae7ee46fbdb8a57097377620c92620b57dce))
|
|
20
|
+
* **modules:** Minor fixes handling shipping services and failure debug ([df48085](https://github.com/ecomplus/cloud-commerce/commit/df48085e515c27894946b16ff2909e2f38d69d05))
|
|
21
|
+
|
|
5
22
|
## [2.18.1](https://github.com/ecomplus/cloud-commerce/compare/v2.18.0...v2.18.1) (2024-05-17)
|
|
6
23
|
|
|
7
24
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.18.
|
|
4
|
+
"version": "2.18.3",
|
|
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>",
|
|
@@ -15,15 +15,15 @@
|
|
|
15
15
|
"/CHANGELOG.md",
|
|
16
16
|
"/scripts/*"
|
|
17
17
|
],
|
|
18
|
+
"lint-staged": {
|
|
19
|
+
"packages/storefront/**/*.{ts,vue,astro}": "eslint -c ./packages/eslint/storefront.staged.eslintrc.cjs --fix",
|
|
20
|
+
"packages/!(storefront)/**/*.ts": "eslint --fix"
|
|
21
|
+
},
|
|
18
22
|
"commit-and-tag-version": {
|
|
19
23
|
"scripts": {
|
|
20
24
|
"precommit": "sleep 1 && git add packages/**/package.json"
|
|
21
25
|
}
|
|
22
26
|
},
|
|
23
|
-
"lint-staged": {
|
|
24
|
-
"packages/storefront/**/*.{ts,vue,astro}": "eslint -c ./packages/eslint/storefront.staged.eslintrc.cjs --fix",
|
|
25
|
-
"packages/!(storefront)/**/*.ts": "eslint --fix"
|
|
26
|
-
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@commitlint/cli": "^19.3.0",
|
|
29
29
|
"@commitlint/config-conventional": "^19.2.2",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"vite": "^5.2.11",
|
|
42
42
|
"vitest": "^1.6.0",
|
|
43
43
|
"zx": "^7.2.3",
|
|
44
|
-
"@cloudcommerce/eslint": "2.18.
|
|
44
|
+
"@cloudcommerce/eslint": "2.18.3"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|
package/scripts/release.mjs
CHANGED
|
@@ -85,10 +85,10 @@ if (argv.publish) {
|
|
|
85
85
|
return cd(pwd);
|
|
86
86
|
});
|
|
87
87
|
await $`pnpm fix-install`;
|
|
88
|
-
await $`git add pnpm-lock.yaml`;
|
|
88
|
+
await $`git add packages/*/package.json packages/*/*/package.json pnpm-lock.yaml`;
|
|
89
89
|
for (let i = 0; i < storesDirs.length; i++) {
|
|
90
90
|
await $`git add ${storesDirs[i].replace(`${pwd}/`, '')}`;
|
|
91
91
|
}
|
|
92
|
-
await $`git commit -m 'chore:
|
|
92
|
+
await $`git commit -m 'chore: Fix package versions and submodules post-release'`;
|
|
93
93
|
await $`git push --follow-tags origin main`;
|
|
94
94
|
}
|