-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
38 lines (36 loc) · 934 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const path = require('path')
const externals = {
'@apidevtools/json-schema-ref-parser': '$RefParser',
'@openapi-contrib/openapi-schema-to-json-schema': 'toJsonSchema',
'js-yaml': 'yaml',
'json-schema-merge-allof': 'mergeAllOf'
}
module.exports = {
mode: 'production',
entry: './lib/browser-handler.js',
output: {
path: path.resolve(__dirname, './dist'),
filename: 'openapi-json-schemextractor.js',
libraryTarget: 'umd',
globalObject: 'this',
library: 'SchemExtractor'
},
externals: (function () {
const transformedExternals = {}
Object.entries(externals)
.forEach(entry => Object.defineProperty(
transformedExternals,
entry[0],
{
value: {
commonjs: entry[0],
commonjs2: entry[0],
amd: entry[0],
root: entry[1]
}
}
)
)
return transformedExternals
}(externals))
}