create-packer 1.25.9 → 1.25.10
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
|
@@ -5,6 +5,7 @@ import { EsbuildPlugin } from 'esbuild-loader'
|
|
|
5
5
|
import HtmlWebpackPlugin from 'html-webpack-plugin'
|
|
6
6
|
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
|
|
7
7
|
import EslintWebpackPlugin from 'eslint-webpack-plugin'
|
|
8
|
+
import StylelintWebpackPlugin from 'stylelint-webpack-plugin'
|
|
8
9
|
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin'
|
|
9
10
|
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer'
|
|
10
11
|
import * as dotenv from 'dotenv'
|
|
@@ -120,6 +121,7 @@ export default function (env) {
|
|
|
120
121
|
template: path.resolve(ROOT, 'index.html')
|
|
121
122
|
}),
|
|
122
123
|
new EslintWebpackPlugin(),
|
|
124
|
+
new StylelintWebpackPlugin(),
|
|
123
125
|
new ForkTsCheckerWebpackPlugin(),
|
|
124
126
|
new webpack.DefinePlugin(envConfig),
|
|
125
127
|
new MiniCssExtractPlugin({
|