1 Star 0 Fork 0

systechn/swagger-editor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack-dist.config.js 862 Bytes
一键复制 编辑 原始数据 按行查看 历史
var path = require('path')
var fs = require('fs')
var node_modules = fs.readdirSync('node_modules').filter(function(x) { return x !== '.bin' })
module.exports = require('./make-webpack-config.js')({
_special: {
separateStylesheets: true,
minimize: true,
sourcemaps: true,
loaders: {
"worker.js": ["worker-loader?inline=true&name=[name].js", "babel"]
}
},
entry: {
"swagger-editor": [
"./src/polyfills.js",
'./src/index.js'
]
},
externals: function(context, request, cb) {
if(node_modules.indexOf(request) !== -1) {
cb(null, 'commonjs ' + request)
return;
}
cb();
},
output: {
path: path.join(__dirname, "dist"),
publicPath: "/dist",
library: "SwaggerEditorCore",
libraryTarget: "umd",
filename: "[name].js",
chunkFilename: "js/[name].js",
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/systechn/swagger-editor.git
git@gitee.com:systechn/swagger-editor.git
systechn
swagger-editor
swagger-editor
master

搜索帮助