@machtwatch/react-script 1.2.11-aplha.1 → 1.2.11-aplha.2
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-aplha.
|
|
3
|
+
"version": "1.2.11-aplha.2",
|
|
4
4
|
"description": "Machtwatch React script",
|
|
5
5
|
"author": "Danny Reza Miloen <danny@machtwatch.co.id>",
|
|
6
6
|
"contributors": [],
|
|
@@ -100,8 +100,6 @@
|
|
|
100
100
|
"simple-progress-webpack-plugin": "^2.0.0",
|
|
101
101
|
"speed-measure-webpack-plugin": "^1.5.0",
|
|
102
102
|
"style-loader": "^3.3.1",
|
|
103
|
-
"stylelint": "^14.9.1",
|
|
104
|
-
"stylelint-webpack-plugin": "^3.3.0",
|
|
105
103
|
"terser": "^5.14.1",
|
|
106
104
|
"terser-webpack-plugin": "^5.3.3",
|
|
107
105
|
"url-loader": "^4.1.1",
|
|
@@ -11,7 +11,6 @@ const PurgecssPlugin = require('purgecss-webpack-plugin');
|
|
|
11
11
|
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
|
|
12
12
|
const LoadablePlugin = require('@loadable/webpack-plugin');
|
|
13
13
|
const WorkboxPlugin = require('workbox-webpack-plugin');
|
|
14
|
-
const StyleLintPlugin = require('stylelint-webpack-plugin');
|
|
15
14
|
const ImageminWebpWebpackPlugin = require('imagemin-webp-webpack-plugin');
|
|
16
15
|
const SimpleProgressWebpackPlugin = require('simple-progress-webpack-plugin');
|
|
17
16
|
const { SubresourceIntegrityPlugin } = require('webpack-subresource-integrity');
|
|
@@ -483,11 +482,6 @@ const clientConfig = {
|
|
|
483
482
|
},
|
|
484
483
|
plugins: [
|
|
485
484
|
...baseClientConfig.plugins,
|
|
486
|
-
new StyleLintPlugin({
|
|
487
|
-
configFile: `${paths.appPath}/.stylelintrc`,
|
|
488
|
-
extensions: ['less'],
|
|
489
|
-
exclude: ['node_modules', 'coverage'],
|
|
490
|
-
}),
|
|
491
485
|
new webpack.HotModuleReplacementPlugin(),
|
|
492
486
|
new SubresourceIntegrityPlugin(),
|
|
493
487
|
new LoadablePlugin({
|