@machtwatch/react-script 1.2.11-alpha.19 → 1.2.11-alpha.21
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": "@machtwatch/react-script",
|
|
3
|
-
"version": "1.2.11-alpha.
|
|
3
|
+
"version": "1.2.11-alpha.21",
|
|
4
4
|
"description": "Machtwatch React script",
|
|
5
5
|
"author": "Danny Reza Miloen <danny@machtwatch.co.id>",
|
|
6
6
|
"contributors": [],
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"@loadable/babel-plugin": "^5.13.2",
|
|
53
53
|
"@loadable/webpack-plugin": "^5.15.2",
|
|
54
54
|
"@svgr/webpack": "^6.2.1",
|
|
55
|
+
"@tailwindcss/postcss": "^4.0.4",
|
|
55
56
|
"@testing-library/jest-dom": "^5.12.0",
|
|
56
57
|
"@testing-library/react": "^11.2.7",
|
|
57
58
|
"assets-webpack-plugin": "7.1.1",
|
|
@@ -86,13 +87,13 @@
|
|
|
86
87
|
"mkdirp": "^0.5.1",
|
|
87
88
|
"null-loader": "^4.0.1",
|
|
88
89
|
"object-assign": "^4.1.1",
|
|
89
|
-
"postcss": "^8.
|
|
90
|
+
"postcss": "^8.5.1",
|
|
90
91
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
91
|
-
"postcss-import": "^
|
|
92
|
-
"postcss-loader": "^
|
|
93
|
-
"postcss-preset-env": "^
|
|
92
|
+
"postcss-import": "^16.1.0",
|
|
93
|
+
"postcss-loader": "^8.1.1",
|
|
94
|
+
"postcss-preset-env": "^10.1.3",
|
|
94
95
|
"promise": "^8.0.2",
|
|
95
|
-
"purgecss-webpack-plugin": "^
|
|
96
|
+
"purgecss-webpack-plugin": "^7.0.2",
|
|
96
97
|
"react-dev-utils": "^12.0.1",
|
|
97
98
|
"react-error-overlay": "6.0.9",
|
|
98
99
|
"recluster": "^0.4.5",
|
|
@@ -105,7 +106,7 @@
|
|
|
105
106
|
"stylelint": "^16.10.0",
|
|
106
107
|
"stylelint-config-recommended-less": "^3.0.1",
|
|
107
108
|
"stylelint-webpack-plugin": "^5.0.1",
|
|
108
|
-
"tailwindcss": "^
|
|
109
|
+
"tailwindcss": "^4.0.4",
|
|
109
110
|
"terser": "^5.14.1",
|
|
110
111
|
"terser-webpack-plugin": "^5.3.3",
|
|
111
112
|
"url-loader": "^4.1.1",
|
|
@@ -264,7 +264,8 @@ const webpackConfig = ({ isClient }) => ({
|
|
|
264
264
|
plugins: [
|
|
265
265
|
isDevEnv && new SimpleProgressWebpackPlugin({
|
|
266
266
|
format: 'minimal',
|
|
267
|
-
})
|
|
267
|
+
}),
|
|
268
|
+
|
|
268
269
|
].filter(Boolean),
|
|
269
270
|
|
|
270
271
|
// Don't attempt to continue if there are any errors.
|
|
@@ -310,7 +311,7 @@ const styleLoaders = ({ isClient }) => [
|
|
|
310
311
|
browsers: pkg.browserslist
|
|
311
312
|
}
|
|
312
313
|
],
|
|
313
|
-
'tailwindcss',
|
|
314
|
+
'@tailwindcss/postcss',
|
|
314
315
|
'postcss-modules-values',
|
|
315
316
|
'postcss-flexbugs-fixes'
|
|
316
317
|
],
|