forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.1 KiB
78 lines
2.1 KiB
const webpack = require("webpack"); |
|
const merge = require("webpack-merge"); |
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); |
|
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); |
|
const OptimizeCssAssetsPlugin = require("optimize-css-assets-webpack-plugin"); |
|
const UglifyJsPlugin = require("uglifyjs-webpack-plugin"); |
|
|
|
const isBuilt4IE8 = process.env.BROWSER_VERSION === "ie8"; |
|
|
|
const dirs = require("./dirs"); |
|
|
|
const common = require("./webpack.common.js"); |
|
|
|
module.exports = merge.smart(common, { |
|
mode: "production", |
|
optimization: { |
|
minimizer: [ |
|
new UglifyJsPlugin({ |
|
parallel: true, |
|
sourceMap: true, |
|
uglifyOptions: { |
|
ie8: true, |
|
output: { |
|
comments: false, |
|
}, |
|
} |
|
}) |
|
] |
|
}, |
|
|
|
devtool: "hidden-source-map", |
|
|
|
output: { |
|
path: dirs.DEST, |
|
filename: isBuilt4IE8 ? "ie.[name].js" : "es5.[name].js", |
|
}, |
|
|
|
plugins: [ |
|
new MiniCssExtractPlugin({ |
|
path: dirs.DEST, |
|
filename: "es5.fineui.css", |
|
}), |
|
new webpack.BannerPlugin({ |
|
banner: `time: ${new Date().toLocaleString()}`, |
|
}), |
|
new ForkTsCheckerWebpackPlugin({ |
|
}), |
|
new OptimizeCssAssetsPlugin({ |
|
assetNameRegExp: /\.css$/g, |
|
cssProcessor: require("cssnano"), |
|
cssProcessorPluginOptions: { |
|
preset: ["default", { |
|
discardComments: { |
|
removeAll: true, |
|
}, |
|
normalizeUnicode: false, |
|
}], |
|
}, |
|
canPrint: true, |
|
}), |
|
], |
|
|
|
module: { |
|
rules: [ |
|
{ |
|
test: /\.(css|less)$/, |
|
use: [ |
|
{ |
|
loader: "postcss-loader", |
|
options: { |
|
plugins: [], |
|
}, |
|
}, |
|
], |
|
}, |
|
], |
|
}, |
|
});
|
|
|