@oroinc/oro-webpack-config-builder 6.0.0-dev001 → 6.0.0-dev002

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,18 +1,18 @@
1
1
  {
2
2
  "name": "@oroinc/oro-webpack-config-builder",
3
- "version": "6.0.0-dev001",
3
+ "version": "6.0.0-dev002",
4
4
  "author": "Oro, Inc (https://www.oroinc.com)",
5
5
  "license": "MIT",
6
6
  "description": "An integration of OroPlatform based applications with the Webpack.",
7
7
  "main": "oro-webpack-config.js",
8
8
  "dependencies": {
9
- "@babel/core": "~7.21.3",
9
+ "@babel/core": "~7.23.3",
10
10
  "@babel/plugin-transform-runtime": "~7.21.0",
11
11
  "@babel/preset-env": "~7.21.2",
12
12
  "autoprefixer": "~10.4.13",
13
13
  "babel-loader": "~9.1.0",
14
14
  "bindings": "~1.5.0",
15
- "css-loader": "^6.7.3",
15
+ "css-loader": "^6.8.1",
16
16
  "css-minimizer-webpack-plugin": "~5.0.0",
17
17
  "deepmerge": "~4.3.1",
18
18
  "exports-loader": "~4.0.0",
@@ -26,8 +26,8 @@
26
26
  "minimist": "~1.2.7",
27
27
  "nan": "~2.17.0",
28
28
  "path": "0.12.7",
29
- "postcss": "~8.4.23",
30
- "postcss-loader": "~7.2.4",
29
+ "postcss": "<8.4.33",
30
+ "postcss-loader": "~7.3.4",
31
31
  "printf": "~0.6.0",
32
32
  "resolve-url-loader": "^5.0.0",
33
33
  "rtlcss-webpack-plugin": "~4.0.6",
@@ -128,7 +128,7 @@ class SvgSprite {
128
128
  sprites.add(svgName, fs.readFileSync(path.join(dirPath, file), 'utf8'));
129
129
  }
130
130
 
131
- fs.writeFileSync(path.join(dirPath, `${this.SPRITE_NAME}.svg`), sprites, 'utf8');
131
+ fs.writeFileSync(path.join(dirPath, `${this.SPRITE_NAME}.svg`), sprites.toString(), 'utf8');
132
132
  }
133
133
  }
134
134