improve webpack config

This commit is contained in:
Send_Nukez 2021-10-26 21:55:26 +02:00
parent 4d99a4616e
commit 10c34f25bd
3 changed files with 1645 additions and 131 deletions

1745
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"file-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"node-sass": "^6.0.1",
"sass-loader": "^12.2.0",
"webpack": "^5.58.2",

View file

@ -1,8 +1,10 @@
const webpack = require("webpack");
const CopyPlugin = require("copy-webpack-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const path = require("path");
/** @type {import('webpack').Configuration} */
module.exports = {
entry: [path.resolve(__dirname, "./src/js/main.js"), path.resolve(__dirname, "./src/styles/main.scss")],
output: {
@ -19,25 +21,36 @@ module.exports = {
{
test: /\.scss$/,
exclude: /node_modules/,
type: "asset/resource",
generator: {
filename: "user.css"
},
use: [
{
loader: "file-loader",
options: { name: "user.css" }
},
"sass-loader"
loader: "sass-loader",
options: {
sourceMap: true
}
}
]
}
]
},
devtool: false,
devtool: "inline-source-map",
plugins: [
new CleanWebpackPlugin(),
new CleanWebpackPlugin({
protectWebpackAssets: false,
cleanAfterEveryBuildPatterns: ["*.LICENSE.txt"]
}),
new webpack.DefinePlugin({
"process.env.DRIBBBLISH_VERSION": JSON.stringify((process.env.DRIBBBLISH_VERSION || "vDev").substring(1)) // Substring because the script expects the version to be `X.X.X` and not `vX.X.X`
}),
new webpack.SourceMapDevToolPlugin({}),
new CopyPlugin({
patterns: [{ from: "src/assets", to: "assets" }, { from: "src/color.ini" }]
})
]
],
optimization: {
minimize: true,
minimizer: [`...`, new CssMinimizerPlugin()]
}
};