cloudcommerce 2.18.2 → 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 CHANGED
@@ -2,6 +2,15 @@
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
+
5
14
  ## [2.18.2](https://github.com/ecomplus/cloud-commerce/compare/v2.18.1...v2.18.2) (2024-05-18)
6
15
 
7
16
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloudcommerce",
3
3
  "type": "module",
4
- "version": "2.18.2",
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>",
@@ -19,6 +19,11 @@
19
19
  "packages/storefront/**/*.{ts,vue,astro}": "eslint -c ./packages/eslint/storefront.staged.eslintrc.cjs --fix",
20
20
  "packages/!(storefront)/**/*.ts": "eslint --fix"
21
21
  },
22
+ "commit-and-tag-version": {
23
+ "scripts": {
24
+ "precommit": "sleep 1 && git add packages/**/package.json"
25
+ }
26
+ },
22
27
  "devDependencies": {
23
28
  "@commitlint/cli": "^19.3.0",
24
29
  "@commitlint/config-conventional": "^19.2.2",
@@ -36,7 +41,7 @@
36
41
  "vite": "^5.2.11",
37
42
  "vitest": "^1.6.0",
38
43
  "zx": "^7.2.3",
39
- "@cloudcommerce/eslint": "2.18.2"
44
+ "@cloudcommerce/eslint": "2.18.3"
40
45
  },
41
46
  "scripts": {
42
47
  "fix-install": "bash scripts/pre-install.sh && pnpm i",
@@ -85,7 +85,7 @@ if (argv.publish) {
85
85
  return cd(pwd);
86
86
  });
87
87
  await $`pnpm fix-install`;
88
- await $`git add packages/**/package.json 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
  }