@nitro/webpack 9.4.1 → 9.5.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nitro/webpack",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.5.0",
|
|
4
4
|
"description": "nitro webpack",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "The Nitro Team",
|
|
@@ -23,30 +23,29 @@
|
|
|
23
23
|
"nitro"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@babel/core": "7.
|
|
27
|
-
"@babel/preset-env": "7.
|
|
28
|
-
"@babel/preset-react": "7.
|
|
29
|
-
"@babel/plugin-proposal-decorators": "7.
|
|
30
|
-
"@babel/plugin-transform-class-properties": "7.
|
|
31
|
-
"autoprefixer": "10.4.
|
|
26
|
+
"@babel/core": "7.27.1",
|
|
27
|
+
"@babel/preset-env": "7.27.2",
|
|
28
|
+
"@babel/preset-react": "7.27.1",
|
|
29
|
+
"@babel/plugin-proposal-decorators": "7.27.1",
|
|
30
|
+
"@babel/plugin-transform-class-properties": "7.27.1",
|
|
31
|
+
"autoprefixer": "10.4.21",
|
|
32
32
|
"case-sensitive-paths-webpack-plugin": "2.4.0",
|
|
33
33
|
"css-loader": "5.2.7",
|
|
34
|
-
"cssnano": "7.0.
|
|
34
|
+
"cssnano": "7.0.7",
|
|
35
35
|
"file-loader": "6.2.0",
|
|
36
36
|
"handlebars-loader": "1.7.3",
|
|
37
|
-
"iconfont-webpack-plugin": "5.0.1",
|
|
38
37
|
"imagemin": "7.0.1",
|
|
39
38
|
"img-loader": "4.0.0",
|
|
40
39
|
"js-config-webpack-plugin": "2.0.3",
|
|
41
40
|
"mini-css-extract-plugin": "1.6.2",
|
|
42
|
-
"postcss": "8.
|
|
41
|
+
"postcss": "8.5.3",
|
|
43
42
|
"postcss-loader": "4.3.0",
|
|
44
43
|
"resolve-url-loader": "5.0.0",
|
|
45
|
-
"sass": "1.
|
|
44
|
+
"sass": "1.87.0",
|
|
46
45
|
"sass-loader": "10.5.2",
|
|
47
46
|
"svgo": "3.3.2",
|
|
48
47
|
"ts-config-webpack-plugin": "2.0.3",
|
|
49
|
-
"typescript": "5.
|
|
48
|
+
"typescript": "5.8.3",
|
|
50
49
|
"url-loader": "4.1.1",
|
|
51
50
|
"webpack": "4.47.0",
|
|
52
51
|
"webpackbar": "7.0.0",
|
|
@@ -134,12 +134,9 @@ module.exports = (options = { rules: {}, features: {} }) => {
|
|
|
134
134
|
{
|
|
135
135
|
loader: require.resolve('postcss-loader'),
|
|
136
136
|
options: {
|
|
137
|
-
postcssOptions: (
|
|
137
|
+
postcssOptions: () => {
|
|
138
138
|
return {
|
|
139
139
|
plugins: [
|
|
140
|
-
require('iconfont-webpack-plugin')({
|
|
141
|
-
resolve: loader.resolve,
|
|
142
|
-
}),
|
|
143
140
|
require('autoprefixer')({
|
|
144
141
|
// @see autoprefixer options: https://github.com/postcss/autoprefixer#options
|
|
145
142
|
// flexbox: 'no-2009' will add prefixes only for final and IE versions of specification.
|
|
@@ -130,12 +130,9 @@ module.exports = (options = { rules: {}, features: {} }) => {
|
|
|
130
130
|
{
|
|
131
131
|
loader: require.resolve('postcss-loader'),
|
|
132
132
|
options: {
|
|
133
|
-
postcssOptions: (
|
|
133
|
+
postcssOptions: () => {
|
|
134
134
|
return {
|
|
135
135
|
plugins: [
|
|
136
|
-
require('iconfont-webpack-plugin')({
|
|
137
|
-
resolve: loader.resolve,
|
|
138
|
-
}),
|
|
139
136
|
require('autoprefixer')({
|
|
140
137
|
// @see autoprefixer options: https://github.com/postcss/autoprefixer#options
|
|
141
138
|
// flexbox: 'no-2009' will add prefixes only for final and IE versions of specification.
|