@ovh-ux/manager-webpack-config 7.1.1 → 7.2.0

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
@@ -3,6 +3,17 @@
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
+ # [7.2.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-webpack-config@7.1.1...@ovh-ux/manager-webpack-config@7.2.0) (2025-11-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * pnpm hybrid improvements ([3b45577](https://github.com/ovh/manager/commit/3b455770da0c7aeb7603f7c731abf6fac9eb4b3f))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [7.1.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-webpack-config@7.1.0...@ovh-ux/manager-webpack-config@7.1.1) (2025-10-12)
7
18
 
8
19
  **Note:** Version bump only for package @ovh-ux/manager-webpack-config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ovh-ux/manager-webpack-config",
3
- "version": "7.1.1",
3
+ "version": "7.2.0",
4
4
  "description": "OVHcloud manager shared webpack configuration.",
5
5
  "keywords": [
6
6
  "configuration",
@@ -27,7 +27,7 @@
27
27
  "@babel/plugin-proposal-private-methods": "^7.18.6",
28
28
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
29
29
  "@babel/preset-env": "^7.20.2",
30
- "@ovh-ux/component-rollup-config": "^13.1.0",
30
+ "@ovh-ux/component-rollup-config": "^13.2.0",
31
31
  "@ovh-ux/manager-webpack-dev-server": "^4.1.1",
32
32
  "acorn": "^8.8.1",
33
33
  "acorn-class-fields": "^1.0.0",
@@ -59,6 +59,11 @@ module.exports = (opts) => {
59
59
  output: {
60
60
  publicPath: '',
61
61
  },
62
+
63
+ stats: {
64
+ warningsFilter: [/flag-icon/, /sass-loader/],
65
+ },
66
+
62
67
  plugins: [
63
68
  ...plugins,
64
69
 
@@ -170,6 +175,11 @@ module.exports = (opts) => {
170
175
  options: {
171
176
  sassOptions: {
172
177
  quietDeps: true,
178
+ silenceDeprecations: [
179
+ 'import',
180
+ 'slash-div',
181
+ 'legacy-js-api',
182
+ ],
173
183
  },
174
184
  },
175
185
  },