This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.mjs
61 lines (59 loc) · 1.46 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
import { babel } from "@rollup/plugin-babel";
import resolve from "@rollup/plugin-node-resolve";
import terser from "@rollup/plugin-terser";
import typescript from "@rollup/plugin-typescript";
import external from "rollup-plugin-peer-deps-external";
import postcss from "rollup-plugin-postcss";
import copy from "rollup-plugin-copy";
import del from "rollup-plugin-delete";
import { dts } from "rollup-plugin-dts";
import packageJson from "./package.json" assert { type: "json" };
/** @type {import('rollup').RollupOptions}*/
export default [
{
input: "./src/index.ts",
output: [
{
file: packageJson.main,
format: "cjs",
},
{
file: packageJson.module,
format: "es",
exports: "named",
},
],
plugins: [
babel({
exclude: "node_modules/**",
presets: ["@babel/preset-react"],
}),
external(),
resolve(),
postcss({
extract: true,
}),
typescript(),
terser(),
],
},
{
input: "./dist/esm/types/index.d.ts",
output: [{ file: "dist/index.d.ts", format: "es" }],
plugins: [
copy({
targets: [{ src: 'dist/cjs/index.css', dest: 'dist/' }],
verbose: true,
hook: 'buildStart',
}),
del({
targets: ['dist/cjs/index.css', 'dist/esm/index.css'],
verbose: true,
hook: 'buildEnd',
}),
dts(),
],
external: [/\.(css|less|scss)$/],
watch: false,
},
];