-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathrollup.config.js
More file actions
82 lines (80 loc) 路 1.88 KB
/
Copy pathrollup.config.js
File metadata and controls
82 lines (80 loc) 路 1.88 KB
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
import babel from "@rollup/plugin-babel";
import commonjs from "@rollup/plugin-commonjs";
import resolve from "@rollup/plugin-node-resolve";
import strip from "@rollup/plugin-strip";
import terser from "@rollup/plugin-terser";
import typescript from "@rollup/plugin-typescript";
import banner2 from "rollup-plugin-banner2";
import pkg from "./package.json" with { type: "json" };
const config = [
{
input: "src/index.ts",
output: [
{
file: "dist/bundle.cjs.js",
format: "cjs",
},
{
file: "dist/bundle.esm.js",
format: "esm",
},
{
name: "Calendar",
file: "dist/bundle.js",
format: "umd",
},
],
plugins: [
typescript({
tsconfig: "tsconfig.build.json",
}),
strip(), // removes console.log
commonjs({
include: "node_modules/**",
}),
resolve(),
babel({
exclude: "node_modules/**",
babelHelpers: "bundled",
}),
terser(), // minify javascript
banner2(() => {
return `/* color-calendar v${pkg.version} by ${pkg.author} */\n\n`;
}),
],
},
{
input: "src/react/index.ts",
external: ["react", "react-dom"],
output: [
{
file: "dist/react.cjs.js",
format: "cjs",
},
{
file: "dist/react.esm.js",
format: "esm",
},
],
plugins: [
typescript({
tsconfig: "tsconfig.build.json",
}),
strip(), // removes console.log
commonjs({
include: "node_modules/**",
}),
resolve(),
babel({
exclude: "node_modules/**",
babelHelpers: "bundled",
presets: ["@babel/preset-react"],
}),
terser(), // minify javascript
banner2(() => {
return `/* color-calendar React v${pkg.version} by ${pkg.author} */\n\n`;
}),
],
},
];
export default config;