2018-01-14 17:50:29 -08:00
|
|
|
const webpack = require('webpack')
|
2018-12-11 07:31:48 -08:00
|
|
|
const config = require('sapper/config/webpack.js')
|
2018-01-14 17:50:29 -08:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
|
2018-01-19 17:17:24 -08:00
|
|
|
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
|
2018-12-15 17:36:36 -08:00
|
|
|
const terser = require('./terser.config')
|
2018-12-16 10:22:34 -08:00
|
|
|
const CircularDependencyPlugin = require('circular-dependency-plugin')
|
2018-12-18 00:43:51 -08:00
|
|
|
const { mode, dev, resolve } = require('./shared.config')
|
2018-01-06 15:51:25 -08:00
|
|
|
|
|
|
|
module.exports = {
|
2018-02-08 22:29:29 -08:00
|
|
|
entry: config.client.entry(),
|
2018-08-31 09:12:48 -07:00
|
|
|
output: Object.assign(config.client.output(), { globalObject: 'this' }), // enables HMR in workers
|
2018-12-18 00:43:51 -08:00
|
|
|
resolve,
|
2018-12-15 19:21:20 -08:00
|
|
|
mode,
|
2018-02-08 22:29:29 -08:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.html$/,
|
|
|
|
use: {
|
|
|
|
loader: 'svelte-loader',
|
|
|
|
options: {
|
2018-12-15 19:21:20 -08:00
|
|
|
dev,
|
2018-02-08 22:29:29 -08:00
|
|
|
hydratable: true,
|
2018-04-28 12:10:50 -07:00
|
|
|
store: true,
|
2018-12-15 19:21:20 -08:00
|
|
|
hotReload: dev
|
2018-02-08 22:29:29 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
].filter(Boolean)
|
|
|
|
},
|
2018-01-20 20:52:40 -08:00
|
|
|
node: {
|
2018-02-08 22:29:29 -08:00
|
|
|
setImmediate: false
|
2018-01-20 20:52:40 -08:00
|
|
|
},
|
2018-12-15 19:21:20 -08:00
|
|
|
optimization: dev ? {} : {
|
2018-04-28 12:10:50 -07:00
|
|
|
minimizer: [
|
2018-12-15 17:36:36 -08:00
|
|
|
terser()
|
2018-04-20 23:35:07 -07:00
|
|
|
],
|
|
|
|
splitChunks: {
|
2018-12-23 11:25:35 -08:00
|
|
|
chunks: 'async',
|
|
|
|
minSize: 5000,
|
|
|
|
maxAsyncRequests: Infinity,
|
|
|
|
maxInitialRequests: Infinity,
|
2018-12-17 13:42:10 -08:00
|
|
|
name: false // these chunk names can be annoyingly long
|
2018-04-20 23:35:07 -07:00
|
|
|
}
|
2018-04-13 20:17:36 -07:00
|
|
|
},
|
2018-03-24 18:17:55 -07:00
|
|
|
plugins: [
|
2018-12-15 17:13:40 -08:00
|
|
|
new webpack.NormalModuleReplacementPlugin(
|
|
|
|
/\/_database\/database\.js$/, // this version plays nicer with IDEs
|
|
|
|
'./database.prod.js'
|
|
|
|
),
|
2018-12-23 10:10:16 -08:00
|
|
|
new LodashModuleReplacementPlugin(),
|
2018-12-16 10:22:34 -08:00
|
|
|
new CircularDependencyPlugin({
|
|
|
|
exclude: /node_modules/,
|
|
|
|
failOnError: true,
|
|
|
|
cwd: process.cwd()
|
2018-11-03 17:06:01 -07:00
|
|
|
})
|
2018-12-15 19:21:20 -08:00
|
|
|
].concat(dev ? [
|
2018-04-13 19:46:25 -07:00
|
|
|
new webpack.HotModuleReplacementPlugin({
|
|
|
|
requestTimeout: 120000
|
|
|
|
})
|
2018-02-08 22:29:29 -08:00
|
|
|
] : [
|
2018-01-14 17:50:29 -08:00
|
|
|
new webpack.DefinePlugin({
|
2018-02-08 22:29:29 -08:00
|
|
|
'process.browser': true,
|
2018-12-15 19:21:20 -08:00
|
|
|
'process.env.NODE_ENV': JSON.stringify(mode)
|
2018-01-14 17:50:29 -08:00
|
|
|
}),
|
|
|
|
new BundleAnalyzerPlugin({ // generates report.html and stats.json
|
|
|
|
analyzerMode: 'static',
|
|
|
|
generateStatsFile: true,
|
|
|
|
statsOptions: {
|
|
|
|
// allows usage with http://chrisbateman.github.io/webpack-visualizer/
|
2018-02-08 22:29:29 -08:00
|
|
|
chunkModules: true
|
2018-01-14 17:50:29 -08:00
|
|
|
},
|
|
|
|
openAnalyzer: false,
|
2018-02-08 22:29:29 -08:00
|
|
|
logLevel: 'silent' // do not bother Webpacker, who runs with --json and parses stdout
|
|
|
|
})
|
2018-03-24 18:17:55 -07:00
|
|
|
]),
|
2018-12-17 13:42:10 -08:00
|
|
|
devtool: dev ? 'inline-source-map' : 'source-map',
|
|
|
|
performance: {
|
|
|
|
hints: dev ? false : 'error' // fail if we exceed the default performance budgets
|
|
|
|
}
|
2018-02-08 22:29:29 -08:00
|
|
|
}
|