1 Star 0 Fork 3

opensource-xjc/artTemplate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
糖饼 提交于 2018-08-29 16:06 . 使用 Prettier 格式化代码
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`
),
new webpack.optimize.ModuleConcatenationPlugin(),
process.env.NODE_ENV === 'production'
? new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
screw_ie8: false
},
mangle: {
screw_ie8: false
},
output: {
screw_ie8: false
}
})
: () => {}
]
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ext-opensource/artTemplate.git
git@gitee.com:ext-opensource/artTemplate.git
ext-opensource
artTemplate
artTemplate
master

搜索帮助