17 Star 23 Fork 7

小为 / word-table

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 637 Bytes
一键复制 编辑 原始数据 按行查看 历史
hustcc 提交于 2017-06-06 13:30 . use webpack
/**
* Copyright (c) 2017 hustcc
* License: MIT
* GitHub: https://github.com/hustcc/word-width
**/
var path = require('path');
var webpack = require('webpack');
module.exports = {
entry: './src/index.js',
output: {
filename: 'word-table.min.js',
path: path.resolve(__dirname, 'dist'),
library: 'WordTable',
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
loaders: [{
test: /.js$/,
loader: 'babel-loader'
}]
},
devtool: 'source-map',
plugins: [
new webpack.optimize.UglifyJsPlugin({
output: { comments: false },
compress: { warnings: false }
})
]
};
JavaScript
1
https://gitee.com/hustcc/word-table.git
git@gitee.com:hustcc/word-table.git
hustcc
word-table
word-table
master

搜索帮助