mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
|
var webpack = require('webpack'),
|
||
|
path = require('path'),
|
||
|
UglifyJsPlugin = require('uglifyjs-webpack-plugin'),
|
||
|
isProd = process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'production-wip';
|
||
|
|
||
|
module.exports = {
|
||
|
entry: {
|
||
|
learn4: './app/main.js'
|
||
|
},
|
||
|
devtool: isProd ? false : 'eval-source-map',
|
||
|
target: 'web',
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, 'js'),
|
||
|
filename: '[name].js',
|
||
|
chunkFilename: 'vendor.js'
|
||
|
},
|
||
|
optimization: {
|
||
|
minimize: isProd,
|
||
|
minimizer: [
|
||
|
new UglifyJsPlugin({
|
||
|
uglifyOptions: {
|
||
|
compress: {
|
||
|
drop_console: true
|
||
|
},
|
||
|
dead_code: true
|
||
|
}
|
||
|
})
|
||
|
],
|
||
|
splitChunks: {
|
||
|
cacheGroups: {
|
||
|
vendors: {
|
||
|
test: /[\\/]node_modules[\\/]/,
|
||
|
priority: 1,
|
||
|
name: 'vendor',
|
||
|
enforce: true,
|
||
|
chunks: 'all'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
plugins: [
|
||
|
new webpack.ProvidePlugin({
|
||
|
'fetch': 'imports-loader?this=>global!exports-loader?global.fetch!whatwg-fetch'
|
||
|
})
|
||
|
],
|
||
|
externals: {
|
||
|
jquery: 'jQuery'
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{ enforce: 'pre', test: /\.json$/, loader: 'json-loader' },
|
||
|
{ enforce: 'pre', test: /\.js$/, loader: 'eslint-loader', exclude: /node_modules/ },
|
||
|
{ test: /\.css$/, loader: 'style-loader!css-loader' },
|
||
|
{
|
||
|
test: /\.js$/,
|
||
|
loader: 'babel-loader',
|
||
|
exclude: /node_modules/,
|
||
|
query: {
|
||
|
presets: ['es2015', 'stage-3']
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|