pinafore/webpack.client.config.js

108 lines
2.7 KiB
JavaScript
Raw Normal View History

const webpack = require('webpack')
const config = require('sapper/webpack/config.js')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
2018-01-20 02:17:24 +01:00
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
const UglifyWebpackPlugin = require('uglifyjs-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin')
2018-01-07 00:51:25 +01:00
2018-02-09 07:29:29 +01:00
const isDev = config.dev
2018-01-07 00:51:25 +01:00
module.exports = {
2018-02-09 07:29:29 +01:00
entry: config.client.entry(),
output: config.client.output(),
resolve: {
extensions: ['.js', '.json', '.html']
2018-02-09 07:29:29 +01:00
},
2018-03-04 18:25:44 +01:00
mode: isDev ? 'development' : 'production',
2018-02-09 07:29:29 +01:00
module: {
rules: [
{
test: /\.html$/,
exclude: /node_modules/,
use: {
loader: 'svelte-loader',
options: {
dev: isDev,
2018-02-09 07:29:29 +01:00
hydratable: true,
emitCss: !isDev,
cascade: false,
store: true,
hotReload: isDev
2018-02-09 07:29:29 +01:00
}
}
},
isDev && {
test: /\.css$/,
use: [
'style-loader',
'css-loader'
]
},
!isDev && {
2018-02-09 07:29:29 +01:00
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader'
2018-02-09 07:29:29 +01:00
]
}
].filter(Boolean)
},
2018-01-21 05:52:40 +01:00
node: {
2018-02-09 07:29:29 +01:00
setImmediate: false
2018-01-21 05:52:40 +01:00
},
optimization: isDev ? {} : {
minimizer: [
new UglifyWebpackPlugin({
cache: true,
parallel: true,
sourceMap: true,
uglifyOptions: {
ecma: 6,
mangle: true,
compress: true,
output: {
comments: false
}
}
}),
new OptimizeCSSAssetsPlugin({})
],
splitChunks: {
chunks: 'async',
minSize: 5000,
maxAsyncRequests: Infinity,
maxInitialRequests: Infinity
}
},
plugins: [
new LodashModuleReplacementPlugin({
paths: true
})
].concat(isDev ? [
2018-04-14 04:46:25 +02:00
new webpack.HotModuleReplacementPlugin({
requestTimeout: 120000
})
2018-02-09 07:29:29 +01:00
] : [
new MiniCssExtractPlugin({
filename: '[name].[hash].css',
chunkFilename: '[name].[id].[hash].css'
}),
new webpack.DefinePlugin({
2018-02-09 07:29:29 +01:00
'process.browser': true,
'process.env.NODE_ENV': '"production"'
}),
new BundleAnalyzerPlugin({ // generates report.html and stats.json
analyzerMode: 'static',
generateStatsFile: true,
statsOptions: {
// allows usage with http://chrisbateman.github.io/webpack-visualizer/
2018-02-09 07:29:29 +01:00
chunkModules: true
},
openAnalyzer: false,
2018-02-09 07:29:29 +01:00
logLevel: 'silent' // do not bother Webpacker, who runs with --json and parses stdout
})
]),
devtool: isDev ? 'cheap-module-source-map' : 'source-map'
2018-02-09 07:29:29 +01:00
}