-
Notifications
You must be signed in to change notification settings - Fork 8
/
rollup.config.mjs
74 lines (71 loc) · 1.48 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
import commonjs from "@rollup/plugin-commonjs";
import nodeResolve from "@rollup/plugin-node-resolve";
import external from "rollup-plugin-peer-deps-external";
import terser from "@rollup/plugin-terser";
import typescript from "rollup-plugin-typescript2";
import css from "rollup-plugin-import-css";
const input = "src/index.ts";
const plugins = [
css({
output: "dist/styles.css",
}),
external({
includeDependencies: true,
}),
typescript({
clean: true,
exclude: ["**/__tests__", "**/*.test.ts", "**/stories/**/*"],
}),
commonjs({
include: /\/node_modules\//,
}),
nodeResolve(),
terser({
output: { comments: false },
compress: {
drop_console: true,
},
}),
];
export default [
{
input,
output: {
file: "dist/index.js",
format: "cjs",
name: "ReactHookFormComponents",
sourcemap: true,
globals: { react: "React" },
exports: "named",
sourcemap: true,
interop: "auto",
},
plugins,
},
{
input,
output: {
file: "dist/index.modern.js",
format: "esm",
name: "ReactHookFormComponents",
sourcemap: true,
globals: { react: "React" },
exports: "named",
sourcemap: true,
},
plugins,
},
{
input,
output: {
file: "dist/index.umd.js",
format: "umd",
name: "ReactHookFormComponents",
sourcemap: true,
globals: { react: "React" },
exports: "named",
sourcemap: true,
},
plugins,
},
];