-
Notifications
You must be signed in to change notification settings - Fork 36
/
rollup.config.js
95 lines (88 loc) · 2.55 KB
/
rollup.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
import { promises as fs } from "fs";
import babel from "rollup-plugin-babel";
import resolve from "rollup-plugin-node-resolve";
import json from "rollup-plugin-json";
import commonjs from "@rollup/plugin-commonjs";
const root = "/"; // = process.platform === "win32" ? path.resolve("/") : "/";
const external = (id) => {
return !id.startsWith(".") && !id.startsWith(root);
};
const extensions = [".js", ".jsx", ".ts", ".tsx", ".json"];
const getBabelOptions = ({ useESModules }, targets) => ({
babelrc: false,
extensions,
exclude: "**/node_modules/**",
runtimeHelpers: true,
presets: [
["@babel/preset-env", { loose: true, modules: false, targets }],
"@babel/preset-react",
"@babel/preset-typescript",
],
plugins: [
["transform-react-remove-prop-types", { removeImport: true }],
["@babel/transform-runtime", { regenerator: false, useESModules }],
],
});
function targetTypings(entry, out) {
return {
writeBundle() {
return fs.lstat(`dist/${out}`).catch(() => {
return fs.writeFile(`dist/${out}.d.ts`, `export * from "./${entry}"`);
});
},
};
}
function addReactImport(out) {
const text = out.includes("cjs")
? `var React = require('react');\n`
: `import React from "react";\n`;
return {
writeBundle() {
return fs.lstat(`dist/${out}`).then(async () => {
const data = await fs.readFile(`dist/${out}`);
const fd = await fs.open(`dist/${out}`, "w+");
// eslint-disable-next-line no-undef
const insert = new Buffer.from(text);
await fd.write(insert, 0, insert.length, 0);
await fd.write(data, 0, data.length, insert.length);
await fd.close();
});
},
};
}
function createConfig(entry, out) {
return [
{
input: `./src/${entry}`,
output: { file: `dist/${out}.js`, format: "esm" },
external,
plugins: [
json(),
addReactImport(`${out}.js`),
commonjs(),
babel(
getBabelOptions(
{ useESModules: true },
">1%, not dead, not ie 11, not op_mini all"
)
),
resolve({ extensions }),
targetTypings(entry, out),
],
},
{
input: `./src/${entry}`,
output: { file: `dist/${out}.cjs.js`, format: "cjs" },
external,
plugins: [
json(),
addReactImport(`${out}.cjs.js`),
commonjs(),
babel(getBabelOptions({ useESModules: false })),
resolve({ extensions }),
targetTypings(entry, out),
],
},
];
}
export default [...createConfig("index", "main")];