forked from VerbalExpressions/JSVerbalExpressions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
57 lines (53 loc) · 1.2 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
/* eslint-disable @typescript-eslint/camelcase */
import multiEntry from "rollup-plugin-multi-entry";
import typescript from "@wessberg/rollup-plugin-ts";
import {terser} from "rollup-plugin-terser";
const noDeclaration = {tsconfig: {declaration: false}};
const clean = {comments: /[^\w\W]/};
const beautifyAndClean = {
beautify: true,
indent_level: 2,
...clean
};
const builds = [
{
input: "src/*.ts",
output: {file: "dist/index.mjs", format: "esm"},
plugins: [
multiEntry(),
typescript(),
terser({
include: [/^.+\.m?js$/],
output: beautifyAndClean
})
]
},
{
input: "src/*.ts",
output: {file: "dist/umd.js", name: "ve", format: "umd"},
plugins: [
multiEntry(),
typescript(noDeclaration),
terser({
include: [/^.+\.m?js$/],
output: beautifyAndClean
})
]
},
{
input: "src/*.ts",
output: [
{file: "dist/index.min.mjs", format: "esm"},
{file: "dist/umd.min.js", name: "ve", format: "umd"}
],
plugins: [
multiEntry(),
typescript(noDeclaration),
terser({
include: [/^.+\.min\.m?js$/],
output: clean
})
]
}
];
export default builds;