1 Star 0 Fork 0

亚运 / sql-formatter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 703 Bytes
一键复制 编辑 原始数据 按行查看 历史
Uku Pattak 提交于 2016-09-15 15:36 . Rename files
const webpack = require("webpack");
const config = {
module: {
loaders: [{
test: /\.js$/,
loader: "babel-loader",
exclude: /node_modules/
}]
},
output: {
library: "sqlFormatter",
libraryTarget: "umd"
},
plugins: [
new webpack.optimize.OccurrenceOrderPlugin(),
]
};
if (process.env.NODE_ENV === "production") {
config.plugins.push(
new webpack.optimize.UglifyJsPlugin({
compressor: {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false
}
})
);
}
module.exports = config;
1
https://gitee.com/heyayun/sql-formatter.git
git@gitee.com:heyayun/sql-formatter.git
heyayun
sql-formatter
sql-formatter
master

搜索帮助