-
Notifications
You must be signed in to change notification settings - Fork 23
/
rollup.lib.js
89 lines (83 loc) · 1.69 KB
/
rollup.lib.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import resolve from "@rollup/plugin-node-resolve";
import json from "@rollup/plugin-json";
import babel from "@rollup/plugin-babel";
import { terser } from "rollup-plugin-terser";
import bundleSize from "rollup-plugin-bundle-size";
import pkg from "./package.json";
import typescript from "@rollup/plugin-typescript";
const sourcemapOption = process.env.PROD ? undefined : "inline";
const babelConfig = {
babelHelpers: "bundled",
presets: ["@babel/preset-env"]
};
let plugins = [
resolve(),
json(),
typescript({ tsconfig: "./tsconfig.json" }),
babel(babelConfig)
];
if (process.env.PROD) {
plugins = [
...plugins,
terser({ mangle: true, compress: true }),
bundleSize()
];
}
const libBundles = [
{
input: "lib/lib.ts",
output: {
file: pkg.module.replace("esm", "cjs"),
format: "cjs",
sourcemap: sourcemapOption
},
watch: {
clearScreen: false
},
plugins
},
{
input: "lib/lib.ts",
output: {
file: pkg.module,
format: "esm",
sourcemap: sourcemapOption
},
watch: {
clearScreen: false
},
plugins
},
{
input: "lib/lib.ts",
output: {
file: pkg.iife,
format: "iife",
sourcemap: sourcemapOption,
name: "AsBindIIFE"
},
watch: {
clearScreen: false
},
plugins
},
{
input: "transform.ts",
output: {
file: "dist/transform.cjs.js",
format: "cjs"
},
external: ["assemblyscript", "visitor-as/as"],
plugins
},
{
input: "transform.ts",
output: {
file: "dist/transform.amd.js",
format: "amd"
},
external: ["assemblyscript", "visitor-as/as"],
plugins
}
];
export default libBundles;