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')
|
2019-03-02 19:02:06 -08:00
|
|
|
const { mode, dev, resolve, inlineSvgs } = require('./shared.config')
|
2018-01-06 15:51:25 -08:00
|
|
|
|
2019-03-02 22:02:59 -08:00
|
|
|
const urlRegex = require('../src/routes/_utils/urlRegexSource.js')()
|
|
|
|
|
2019-02-15 20:31:22 -08:00
|
|
|
const output = Object.assign(config.client.output(), {
|
|
|
|
// enables HMR in workers
|
|
|
|
globalObject: 'this',
|
|
|
|
// Zeit does not like filenames with "$" in them, so just keep things simple
|
|
|
|
filename: '[hash]/[id].js',
|
|
|
|
chunkFilename: '[hash]/[id].js'
|
|
|
|
})
|
2019-02-15 19:46:27 -08:00
|
|
|
|
2018-01-06 15:51:25 -08:00
|
|
|
module.exports = {
|
2018-02-08 22:29:29 -08:00
|
|
|
entry: config.client.entry(),
|
2019-02-15 20:31:22 -08:00
|
|
|
output,
|
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
|
|
|
}
|
|
|
|
}
|
2019-03-09 12:23:46 -08:00
|
|
|
},
|
|
|
|
{
|
2019-03-15 23:54:09 -07:00
|
|
|
test: /\.m?js$/,
|
|
|
|
include: /node_modules\/emoji-mart/,
|
2019-03-09 12:23:46 -08:00
|
|
|
use: {
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
plugins: [
|
|
|
|
[
|
|
|
|
'transform-react-remove-prop-types',
|
|
|
|
{
|
|
|
|
removeImport: true,
|
|
|
|
additionalLibraries: [
|
|
|
|
'../../utils/shared-props'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
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: [
|
2019-03-02 19:02:06 -08:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.browser': true,
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
2019-03-02 22:02:59 -08:00
|
|
|
'process.env.INLINE_SVGS': JSON.stringify(inlineSvgs),
|
|
|
|
'process.env.URL_REGEX': urlRegex.toString()
|
2019-03-02 19:02:06 -08:00
|
|
|
}),
|
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
|
|
|
] : [
|
2019-03-09 12:23:46 -08:00
|
|
|
|
2019-03-15 23:26:22 -07:00
|
|
|
new BundleAnalyzerPlugin({ // generates report.html
|
2018-01-14 17:50:29 -08:00
|
|
|
analyzerMode: 'static',
|
|
|
|
openAnalyzer: false,
|
2019-03-15 23:26:22 -07:00
|
|
|
logLevel: 'silent'
|
2018-02-08 22:29:29 -08:00
|
|
|
})
|
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
|
|
|
}
|