forked from Azure/react-appinsights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.base.config.js
119 lines (109 loc) · 3.54 KB
/
rollup.base.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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import cjs from "rollup-plugin-commonjs";
import json from "rollup-plugin-json";
import multiEntry from "rollup-plugin-multi-entry";
import nodeBuiltins from "rollup-plugin-node-builtins";
import nodeResolve from "rollup-plugin-node-resolve";
import replace from "rollup-plugin-replace";
import { uglify } from "rollup-plugin-uglify";
import viz from "rollup-plugin-visualizer";
const pkg = require("./package.json");
const depNames = Object.keys(pkg.dependencies);
const input = "dist-esm/src/index.js";
export function nodeConfig(test = false) {
const externalNodeBuiltins = ["events"];
const baseConfig = {
input: input,
external: depNames.concat(externalNodeBuiltins),
output: { file: "dist/index.js", format: "cjs", sourcemap: true },
plugins: [
json(),
replace({
delimiters: ["", ""],
values: {
// replace dynamic checks with if (true) since this is for node only.
// Allows rollup's dead code elimination to be more aggressive.
"if (isNode)": "if (true)"
}
}),
nodeResolve({ preferBuiltins: true }),
cjs()
]
};
if (test) {
// entry point is every test file
baseConfig.input = "dist-esm/test/**/*.js";
baseConfig.plugins.unshift(multiEntry({ exports: false }));
// different output file
baseConfig.output.file = "test-dist/index.js";
// mark assert as external
baseConfig.external.push("assert");
} else {
baseConfig.plugins.push(uglify());
}
return baseConfig;
}
export function browserConfig(test = false) {
const baseConfig = {
input: input,
external: ["ms-rest-js"],
output: {
file: "browser/index.js",
format: "umd",
name: "ExampleClient",
sourcemap: true,
globals: { "ms-rest-js": "msRest" }
},
plugins: [
json(),
replace(
// ms-rest-js is externalized so users must include it prior to using this bundle.
{
delimiters: ["", ""],
values: {
// replace dynamic checks with if (false) since this is for
// browser only. Rollup's dead code elimination will remove
// any code guarded by if (isNode) { ... }
"if (isNode)": "if (false)"
}
}
),
nodeResolve({
preferBuiltins: false,
browser: true
}),
cjs({
namedExports: {
events: ["EventEmitter"],
"node_modules/@microsoft/applicationinsights-core-js/browser/applicationinsights-core-js.min.js": [
"AppInsightsCore",
"LoggingSeverity",
"_InternalMessageId",
"CoreUtils",
"DiagnosticLogger"
],
"node_modules/react/index.js": ["Children", "Component", "PropTypes", "createElement"],
"node_modules/react-dom/index.js": ["render"]
}
}),
nodeBuiltins(),
viz({ filename: "browser/browser-stats.html", sourcemap: false })
],
onwarn
};
if (test) {
baseConfig.input = "dist-esm/test/**/*.js";
baseConfig.plugins.unshift(multiEntry({ exports: false }));
baseConfig.output.file = "test-browser/index.js";
} else {
baseConfig.plugins.push(uglify());
}
return baseConfig;
}
function onwarn(warning, warn) {
if (warning.code === "CIRCULAR_DEPENDENCY" && warning.importer.indexOf("duplex.js") > -1) {
// circular dependencies in Stream (required by create-hmac via rollup-plugin-node-builtins)
// These should be ignored per https://github.com/calvinmetcalf/rollup-plugin-node-builtins/issues/39
return;
}
warn(warning);
}