-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
executable file
·94 lines (71 loc) · 1.77 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
82
83
84
85
86
87
88
89
90
91
92
93
94
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 peerDepsExternal from 'rollup-plugin-peer-deps-external';
import nodePolyfills from "rollup-plugin-polyfill-node";
import { terser } from "rollup-plugin-terser";
const packageJson = JSON.parse(fs.readFileSync("./package.json", "utf-8"));
const extensions = [".js", ".ts"];
const globals = {
}
const externals = []
const makeExternalPredicate = externalArr => {
if (externalArr.length === 0) {
return () => false;
}
const pattern = new RegExp(`^(${externalArr.join("|")})($|/)`);
return id => pattern.test(id);
};
const output = [
{
file: packageJson.browser,
format: "umd",
name: "DevlanderColors",
globals: globals,
sourcemap: true,
},
{
file: packageJson.main,
format: "cjs",
globals: globals,
sourcemap: true,
},
{
file: packageJson.module,
format: "esm",
globals: globals,
sourcemap: true,
}
]
export default {
plugins: [
peerDepsExternal( ),
nodeResolve({
extensions,
preferBuiltins: true,
mainFields: ['module', 'main', 'browser'],
}),
commonjs({
include: /node_modules/,
extensions,
}),
babel({
extensions,
babelHelpers: "bundled",
presets: [
"@babel/preset-env",
"@babel/preset-typescript",
],
}),
typescript(),
nodePolyfills(),
json(),
terser(),
],
input: "src/index.ts", // Entry point, exclude storybook entry point if it's different
external: makeExternalPredicate(externals),
output: output
};