@machtwatch/react-script 1.2.11-alpha.18 → 1.2.11-alpha.20
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.20",
|
|
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,7 +87,7 @@
|
|
|
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
92
|
"postcss-import": "^14.1.0",
|
|
92
93
|
"postcss-loader": "^7.0.0",
|
|
@@ -105,6 +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",
|
|
109
|
+
"tailwindcss": "^4.0.4",
|
|
108
110
|
"terser": "^5.14.1",
|
|
109
111
|
"terser-webpack-plugin": "^5.3.3",
|
|
110
112
|
"url-loader": "^4.1.1",
|
|
@@ -123,8 +125,7 @@
|
|
|
123
125
|
"@machtwatch/eslint-config": "^1.1.1",
|
|
124
126
|
"eslint": "^8.18.0",
|
|
125
127
|
"eslint-import-resolver-webpack": "^0.13.2",
|
|
126
|
-
"eslint-plugin-import": "^2.26.0"
|
|
127
|
-
"tailwindcss": "^3.4.17"
|
|
128
|
+
"eslint-plugin-import": "^2.26.0"
|
|
128
129
|
},
|
|
129
130
|
"peerDependencies": {
|
|
130
131
|
"@babel/runtime": "^7.18.3"
|
|
@@ -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
|
],
|