@ecomplus/storefront-framework 5.18.7 → 5.19.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.
@@ -13,12 +13,12 @@
13
13
  },
14
14
  "main": "index.js",
15
15
  "dependencies": {
16
- "@ecomplus/storefront-renderer": "^2.8.16",
17
- "firebase-admin": "^10.2.0",
18
- "firebase-functions": "^3.21.0"
16
+ "@ecomplus/storefront-renderer": "^2.8.17",
17
+ "firebase-admin": "^10.3.0",
18
+ "firebase-functions": "^3.22.0"
19
19
  },
20
20
  "devDependencies": {
21
- "firebase-functions-test": "^2.0.1"
21
+ "firebase-functions-test": "^2.2.0"
22
22
  },
23
23
  "private": true
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecomplus/storefront-framework",
3
- "version": "5.18.7",
3
+ "version": "5.19.2",
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": {
@@ -36,16 +36,16 @@
36
36
  },
37
37
  "homepage": "https://github.com/ecomplus/storefront/tree/master/@ecomplus/storefront-framework#readme",
38
38
  "dependencies": {
39
- "@babel/core": "^7.17.10",
39
+ "@babel/core": "^7.18.6",
40
40
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
41
- "@babel/preset-env": "^7.17.10",
41
+ "@babel/preset-env": "^7.18.6",
42
42
  "@ecomplus/storefront-renderer": "^2.8.17",
43
43
  "@ecomplus/storefront-router": "^2.2.1",
44
44
  "autoprefixer": "^10.4.4",
45
45
  "babel-loader": "^8.2.5",
46
46
  "clean-webpack-plugin": "^4.0.0",
47
47
  "copy-webpack-plugin": "^6.4.1",
48
- "core-js": ">=3.19.0 <3.23",
48
+ "core-js": ">=3.19.0 <3.24",
49
49
  "css-loader": "^3.6.0",
50
50
  "cssnano": "^5.1.4",
51
51
  "ejs": "^3.1.6",
@@ -58,12 +58,12 @@
58
58
  "raw-loader": "^4.0.2",
59
59
  "recursive-readdir": "^2.2.2",
60
60
  "resolve-url-loader": "^5.0.0",
61
- "sass": "^1.51.0",
62
- "sass-loader": "^10.2.1",
61
+ "sass": "^1.53.0",
62
+ "sass-loader": "^10.3.0",
63
63
  "terser-webpack-plugin": "^4.2.3",
64
64
  "url-loader": "^4.1.1",
65
- "vue-loader": "^15.9.8",
66
- "vue-template-compiler": "^2.6.14",
65
+ "vue-loader": "^15.10.0",
66
+ "vue-template-compiler": "^2.7.1",
67
67
  "webpack": "^4.46.0",
68
68
  "webpack-dev-middleware": "^3.7.3",
69
69
  "webpack-merge": "^4.2.2",
@@ -40,8 +40,10 @@ const filenameSchema = process.env.WEBPACK_OUTPUT_FILENAME || '[name].[contentha
40
40
 
41
41
  // inject brand colors
42
42
  let scssInject = `$primary: ${primaryColor}; ` +
43
- `$secondary: ${secondaryColor}; ` +
44
- `$settings-theme: ${jsonSassVars.convertJs(settings.theme || {})}; `
43
+ `$secondary: ${secondaryColor}; ` +
44
+ `$settings-theme: ${jsonSassVars.convertJs(settings.theme || {})}; ` +
45
+ `$settings-primary-color: "${settings.primary_color}"; ` +
46
+ `$settings-secondary-color: "${settings.secondary_color}"; `
45
47
  if (settings.icons_font && settings.icons_font.length > 2) {
46
48
  scssInject += `$icons-font: "${settings.icons_font}"; `
47
49
  }
@@ -184,7 +186,7 @@ let config = {
184
186
  presets: [
185
187
  ['@babel/preset-env', {
186
188
  useBuiltIns: 'usage',
187
- corejs: '3.20',
189
+ corejs: '3.23',
188
190
  modules: false
189
191
  }]
190
192
  ],