forked from swagger-api/swagger-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes-bundle.babel.js
70 lines (60 loc) · 1.68 KB
/
es-bundle.babel.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* @prettier
*/
/** Dev Note:
* StatsWriterPlugin is disabled by default; uncomment to enable
* when enabled, rebuilding the bundle will cause error for assetSizeLimit,
* which we want to keep out of CI/CD
* post build, cli command: npx webpack-bundle-analyzer <path>
*/
import configBuilder from "./_config-builder"
import { DuplicatesPlugin } from "inspectpack/plugin"
import { WebpackBundleSizeAnalyzerPlugin } from "webpack-bundle-size-analyzer"
// import path from "path"
// import { StatsWriterPlugin } from "webpack-stats-plugin"
const minimize = true
const sourcemaps = true
const result = configBuilder(
{
minimize,
mangle: true,
sourcemaps,
includeDependencies: true,
emitWorkerAssets: false,
},
{
mode: "production",
entry: {
"swagger-editor-es-bundle": [
"./src/index.js",
],
},
output: {
globalObject: "this",
library: {
type: "commonjs2",
export: "default",
},
},
performance: {
hints: "error",
maxEntrypointSize: 1024000 * 3.25, // MB
maxAssetSize: 1024000 * 3.25, // MB
},
devtool: sourcemaps && minimize ? "nosources-cheap-module-source-map" : false,
plugins: [
new DuplicatesPlugin({
// emit compilation warning or error? (Default: `false`)
emitErrors: false,
// display full duplicates information? (Default: `false`)
verbose: true,
}),
new WebpackBundleSizeAnalyzerPlugin("log.es-bundle-sizes.swagger-editor.txt"),
// new StatsWriterPlugin({
// filename: path.join("log.es-bundle-stats.swagger-editor.json"),
// fields: null,
// }),
]
}
)
export default result