-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
63 lines (62 loc) · 1.33 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
import "@babel/plugin-transform-runtime";
import alias from "@rollup/plugin-alias";
import babel from "@rollup/plugin-babel";
import resolve from "@rollup/plugin-node-resolve";
import postcss from "rollup-plugin-postcss";
import { terser } from "rollup-plugin-terser";
export default {
input: "./src/index.js",
output: [
{
file: "dist/index.min.js",
format: "cjs",
exports: "auto",
sourcemap: true,
},
{
file: "dist/index.es.js",
format: "es",
exports: "auto",
sourcemap: true,
},
{
file: `dist/index.esm.js`,
format: "esm",
sourcemap: true,
},
],
plugins: [
postcss({
modules: {
generateScopedName: "__BR_checker_[local]_[hash:base64:5]",
},
plugins: [],
minimize: true,
}),
alias({
entries: [
{ find: "react", replacement: "preact/compat" },
{ find: "react-dom/test-utils", replacement: "preact/test-utils" },
{ find: "react-dom", replacement: "preact/compat" },
{ find: "react/jsx-runtime", replacement: "preact/jsx-runtime" },
],
}),
babel({
babelHelpers: "runtime",
exclude: "node_modules/**",
presets: ["@babel/preset-react"],
plugins: [
"@babel/plugin-transform-runtime",
[
"@babel/plugin-transform-react-jsx",
{
runtime: "automatic",
importSource: "preact",
},
],
],
}),
resolve(),
terser(),
],
};