mirror of
https://github.com/aui/art-template.git
synced 2026-02-01 16:45:32 +00:00
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
const path = require('path');
|
|
const webpack = require('webpack');
|
|
const packageInfo = require('./package.json');
|
|
const version = packageInfo.version;
|
|
|
|
|
|
module.exports = {
|
|
target: 'web',
|
|
entry: {
|
|
'template-web': path.resolve(__dirname, 'lib', 'index')
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, 'lib'),
|
|
filename: '[name].js',
|
|
library: 'template',
|
|
libraryTarget: 'umd'
|
|
},
|
|
node: {
|
|
'fs': 'empty',
|
|
'path': 'empty',
|
|
'process': false
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'html-minifier': 'node-noop'
|
|
}
|
|
},
|
|
module: {
|
|
rules: [{
|
|
test: /\.js$/,
|
|
use: [{
|
|
loader: 'eslint-loader'
|
|
}]
|
|
}]
|
|
},
|
|
devtool: 'source-map',
|
|
plugins: [
|
|
new webpack.BannerPlugin(`art-template@${version} for browser | https://github.com/aui/art-template`),
|
|
process.env.NODE_ENV === 'production' ? new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false,
|
|
screw_ie8: false
|
|
},
|
|
mangle: {
|
|
screw_ie8: false
|
|
},
|
|
output: {
|
|
screw_ie8: false
|
|
}
|
|
}) : () => {}
|
|
]
|
|
}; |