@ecomplus/storefront-framework 5.20.39 → 5.20.40

Sign up to get free protection for your applications and to get access to all the features.
package/.bundles.json CHANGED
@@ -2,9 +2,9 @@
2
2
  "assetsByChunkName": {
3
3
  "storefront": [
4
4
  "storefront.4963d91d270d096163c0.css",
5
- "storefront.43ed6026120d05c8b106.js",
5
+ "storefront.911e2c67e1e04c69db83.js",
6
6
  "storefront.4963d91d270d096163c0.css.map",
7
- "storefront.43ed6026120d05c8b106.js.map"
7
+ "storefront.911e2c67e1e04c69db83.js.map"
8
8
  ]
9
9
  }
10
10
  }
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.20.40](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-framework@5.20.39...@ecomplus/storefront-framework@5.20.40) (2024-04-26)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **deps:** reverting core-js and lozad peer semver ([498daaf](https://github.com/ecomplus/storefront/commit/498daaf7a687eb7b51ce40e19633c8349fedafef))
11
+ - **framework/partytown:** reverting to partytown 0.7 with node 16 support ([23959fa](https://github.com/ecomplus/storefront/commit/23959facdd691fa1a912292c332ab12fbb82d42b))
12
+ - **framework/webpack:** fixing corejs version to 3.37 ([6e77c7e](https://github.com/ecomplus/storefront/commit/6e77c7e41d567321b6af7469c3d4d95c6b378af8))
13
+
6
14
  ## [5.20.39](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-framework@5.20.38...@ecomplus/storefront-framework@5.20.39) (2024-04-25)
7
15
 
8
16
  ### Bug Fixes
@@ -9,7 +9,7 @@
9
9
  "logs": "firebase functions:log"
10
10
  },
11
11
  "engines": {
12
- "node": "14.21.3"
12
+ "node": "14"
13
13
  },
14
14
  "main": "index.js",
15
15
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecomplus/storefront-framework",
3
- "version": "5.20.39",
3
+ "version": "5.20.40",
4
4
  "description": "Framework for PWA and JAMstack e-commerce templates with E-Com Plus APIs",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -39,14 +39,14 @@
39
39
  "@babel/core": "^7.24.4",
40
40
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
41
41
  "@babel/preset-env": "^7.24.4",
42
- "@builder.io/partytown": "^0.10.1",
43
- "@ecomplus/storefront-renderer": "^2.11.5",
42
+ "@builder.io/partytown": "^0.7.6",
43
+ "@ecomplus/storefront-renderer": "^2.11.6",
44
44
  "@ecomplus/storefront-router": "^2.2.1",
45
45
  "autoprefixer": "^10.4.19",
46
46
  "babel-loader": "^8.3.0",
47
47
  "clean-webpack-plugin": "^4.0.0",
48
48
  "copy-webpack-plugin": "^6.4.1",
49
- "core-js": ">=3.29.0 <3.38",
49
+ "core-js": ">=3.37.0 <3.38",
50
50
  "css-loader": "^3.6.0",
51
51
  "cssnano": "^5.1.15",
52
52
  "ejs": "^3.1.10",
@@ -188,7 +188,7 @@ let config = {
188
188
  presets: [
189
189
  ['@babel/preset-env', {
190
190
  useBuiltIns: 'usage',
191
- corejs: '3.29',
191
+ corejs: '3.37',
192
192
  modules: false
193
193
  }]
194
194
  ],