-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
81 lines (74 loc) · 1.84 KB
/
rollup.config.mjs
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
import babel from "@rollup/plugin-babel";
import commonjs from "@rollup/plugin-commonjs";
import json from "@rollup/plugin-json";
import nodeResolve from "@rollup/plugin-node-resolve";
import typescript from "@rollup/plugin-typescript";
import fs from "fs";
import { terser } from "rollup-plugin-terser";
import nodePolyfills from "rollup-plugin-polyfill-node";
const packageJson = JSON.parse(fs.readFileSync("./package.json", "utf-8"));
const extensions = [".js", ".jsx", ".ts", ".tsx", ".web.js", ".native.js"];
// Exclude certain dependencies from being bundled
const external = [
...Object.keys(packageJson.dependencies || {}),
...Object.keys(packageJson.peerDependencies || {}),
"fs",
"path",
"fs/promises",
"picocolors"
];
const globals = {
"picocolors": "picocolors",
"fs": "fs",
"path": "path",
"fs/promises": "fs$1"
};
const makeExternalPredicate = externalArr => {
if (externalArr.length === 0) {
return () => false;
}
const pattern = new RegExp(`^(${externalArr.join("|")})($|/)`);
return id => pattern.test(id);
};
export default {
input: "src/index.ts", // Your entry point
output: [
{
file: packageJson.main,
format: "cjs",
sourcemap: true,
exports: "named"
},
{
file: packageJson.module,
format: "esm",
sourcemap: true,
exports: "named"
}
],
external: makeExternalPredicate(external),
plugins: [
nodeResolve({
extensions,
preferBuiltins: false,
browser: true
}),
commonjs({
include: /node_modules/,
extensions,
}),
babel({
extensions,
babelHelpers: "bundled",
exclude: /node_modules/,
presets: [
"@babel/preset-env",
"@babel/preset-typescript",
],
}),
typescript(),
json(),
nodePolyfills(),
terser(), // Use terser for minification
],
};