itsblue-website/plugins/git-sync/webpack.conf.js

75 lines
2 KiB
JavaScript
Executable file

var webpack = require('webpack'),
path = require('path'),
exec = require('child_process').execSync,
UglifyJsPlugin = require('uglifyjs-webpack-plugin'),
isProd = process.env.NODE_ENV === 'production',
pwd = exec('pwd').toString(),
adminPath = path.resolve(pwd + '/../admin/themes/grav/app');
module.exports = {
entry: {
app: './app/main.js'
},
devtool: isProd ? false : 'eval-source-map',
target: 'web',
resolve: {
alias: {
admin: adminPath
}
},
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',
'git-sync': 'GitSync',
'grav-config': 'GravAdmin'
},
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']
}
}
]
}
};