-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
93 lines (85 loc) · 1.94 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
import replace from "@rollup/plugin-replace";
import commonjs from "@rollup/plugin-commonjs";
import { babel } from "@rollup/plugin-babel";
import filesize from "rollup-plugin-filesize";
import typescript from "rollup-plugin-typescript2";
import copy from "rollup-plugin-copy";
import cleanup from "rollup-plugin-cleanup";
import terser from "@rollup/plugin-terser";
const plugins = [
copy({ targets: [{ src: "src/tesseract", dest: "dist" }] }),
commonjs({
include: "node_modules/**",
}),
babel({
babelHelpers: "runtime",
babelrc: false,
presets: [
[
"@babel/preset-env",
{
modules: false,
loose: true,
},
],
],
plugins: ["@babel/plugin-transform-runtime"].filter(Boolean),
}),
];
const devPlugins = plugins.concat([
replace({
"process.env.NODE_ENV": JSON.stringify("development"),
preventAssignment: true,
}),
]);
const prodPlugins = plugins.concat([
replace({
"process.env.NODE_ENV": JSON.stringify("production"),
preventAssignment: true,
}),
terser(),
filesize(),
typescript({
// rollupCommonJSResolveHack: false,
outDir: "./types",
clean: true,
}),
cleanup(),
]);
const base = {
input: "src/index.ts",
};
const output = {
exports: "named",
};
const makeOutput = (config) => Object.assign({}, output, config);
const withBase = (config) => Object.assign({}, base, config);
export default [
{
output: [
{
name: "idcard.js",
dir: "dist",
format: "es",
},
].map(makeOutput),
plugins: prodPlugins,
},
// {
// output: [{
// name: "WaterMark",
// file: "dist/watermark.js",
// format: "umd",
// },
// {
// file: "dist/watermark.es.js",
// format: "es",
// },
// {
// file: "dist/watermark.cjs.js",
// format: "cjs",
// },
// ].map(makeOutput),
// plugins: devPlugins,
// },
].map(withBase);