cloudcommerce 2.18.1 → 2.18.2

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,14 @@
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.2](https://github.com/ecomplus/cloud-commerce/compare/v2.18.1...v2.18.2) (2024-05-18)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **custom-shipping:** Simple zip code validation with BR country code ([e7cbae7](https://github.com/ecomplus/cloud-commerce/commit/e7cbae7ee46fbdb8a57097377620c92620b57dce))
11
+ * **modules:** Minor fixes handling shipping services and failure debug ([df48085](https://github.com/ecomplus/cloud-commerce/commit/df48085e515c27894946b16ff2909e2f38d69d05))
12
+
5
13
  ## [2.18.1](https://github.com/ecomplus/cloud-commerce/compare/v2.18.0...v2.18.1) (2024-05-17)
6
14
 
7
15
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloudcommerce",
3
3
  "type": "module",
4
- "version": "2.18.1",
4
+ "version": "2.18.2",
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,11 +15,6 @@
15
15
  "/CHANGELOG.md",
16
16
  "/scripts/*"
17
17
  ],
18
- "commit-and-tag-version": {
19
- "scripts": {
20
- "precommit": "sleep 1 && git add packages/**/package.json"
21
- }
22
- },
23
18
  "lint-staged": {
24
19
  "packages/storefront/**/*.{ts,vue,astro}": "eslint -c ./packages/eslint/storefront.staged.eslintrc.cjs --fix",
25
20
  "packages/!(storefront)/**/*.ts": "eslint --fix"
@@ -41,7 +36,7 @@
41
36
  "vite": "^5.2.11",
42
37
  "vitest": "^1.6.0",
43
38
  "zx": "^7.2.3",
44
- "@cloudcommerce/eslint": "2.18.1"
39
+ "@cloudcommerce/eslint": "2.18.2"
45
40
  },
46
41
  "scripts": {
47
42
  "fix-install": "bash scripts/pre-install.sh && pnpm i",
@@ -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 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: Update store submodule post-release'`;
92
+ await $`git commit -m 'chore: Fix package versions and submodules post-release'`;
93
93
  await $`git push --follow-tags origin main`;
94
94
  }
@@ -1,5 +0,0 @@
1
- #!/bin/bash
2
-
3
- npx zx scripts/release.mjs
4
- git add packages/*/package.json
5
- git add packages/*/*/package.json