-
Notifications
You must be signed in to change notification settings - Fork 59
/
rollup.config.js
104 lines (99 loc) · 2.55 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import typescript from "rollup-plugin-typescript";
import resolve from "rollup-plugin-node-resolve";
import commonjs from "rollup-plugin-commonjs";
import builtins from "@crokita/rollup-plugin-node-builtins";
import nodeGlobals from "rollup-plugin-node-globals";
import json from "@rollup/plugin-json";
import { string } from "rollup-plugin-string";
import fs from "fs";
const getBannerText = () => {
const packageJson = JSON.parse(fs.readFileSync("./package.json", "utf-8"));
const { version } = packageJson;
let bannerText = fs.readFileSync("./src/meta.js", "utf-8");
bannerText = bannerText.replace("%VERSION%", version);
return bannerText;
};
const getWrapper = (startL, endL) => {
const js = fs.readFileSync("./src/wrapper.js", "utf-8");
return js.split(/\n/g).slice(startL, endL).join("\n");
};
const basePlugins = [
typescript({
target: "ES6",
sourceMap: false,
allowJs: true,
lib: ["ES6", "dom"],
}),
resolve({
preferBuiltins: true,
jsnext: true,
extensions: [".js", ".ts"],
}),
commonjs({
extensions: [".js", ".ts"],
}),
json(),
string({
include: "**/*.css",
}),
{
/**
* remove tslib license comments
* @param {string} code
* @param {string} id
*/
transform(code, id) {
if (id.includes("tslib")) {
code = code.split(/\r?\n/g).slice(15).join("\n");
}
return {
code,
};
},
},
];
const plugins = [
...basePlugins,
builtins(),
nodeGlobals({
dirname: false,
filename: false,
baseDir: false,
}),
];
export default [
{
input: "src/worker.ts",
output: {
file: "dist/cache/worker.js",
format: "iife",
name: "worker",
banner: "export const PDFWorker = function () { ",
footer: "return worker\n}\n",
sourcemap: false,
},
plugins,
},
{
input: "src/main.ts",
output: {
file: "dist/main.user.js",
format: "iife",
sourcemap: false,
banner: getBannerText,
intro: () => getWrapper(0, -5),
outro: () => getWrapper(-5),
},
plugins,
},
{
input: "src/cli.ts",
output: {
file: "dist/cli.js",
format: "cjs",
banner: "#!/usr/bin/env node",
sourcemap: false,
},
plugins: basePlugins,
},
];