@caweb/webpack 1.5.5 → 1.5.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/webpack",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
4
4
  "description": "CAWebPublishing Webpack Configuration",
5
5
  "main": "webpack.config.js",
6
6
  "files": [
@@ -45,6 +45,7 @@
45
45
  "html-webpack-skip-assets-plugin": "^1.0.4",
46
46
  "mini-css-extract-plugin": "^2.9.2",
47
47
  "rtlcss-webpack-plugin": "^4.0.7",
48
+ "webpack": "^5.102.1",
48
49
  "webpack-dev-server": "^5.2.2",
49
50
  "webpack-remove-empty-scripts": "^1.1.1"
50
51
  },
package/webpack.config.js CHANGED
@@ -109,7 +109,7 @@ baseConfig.module.rules.forEach((rule, i) => {
109
109
  break;
110
110
  case new RegExp(/\.(sc|sa)ss$/).toString():
111
111
  rule.use[rule.use.length-1].options.sassOptions = {
112
- silenceDeprecations: ['global-builtin', 'import', 'color-functions', 'mixed-decls']
112
+ silenceDeprecations: ['global-builtin', 'import', 'color-functions']
113
113
  };
114
114
  break;
115
115
  }