-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrollup.config.mjs
238 lines (228 loc) · 6.12 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
import fs from "fs";
import typescript from "@rollup/plugin-typescript";
import terser from "@rollup/plugin-terser";
// import replace from "@rollup/plugin-replace";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import { dts } from "rollup-plugin-dts";
const pkg = JSON.parse(await fs.promises.readFile("./package.json"));
const version = pkg.version;
fs.rmSync("dist", { recursive: true, force: true });
const strProduct = "Dynamsoft MRZ Scanner JS Edition Bundle";
const terser_format = {
// this func is run by eval in worker, so can't use variable outside
comments: function (node, comment) {
const text = comment.value;
const type = comment.type;
if (type == "comment2") {
// multiline comment
const strProduct = "Dynamsoft Document Scanner JS Edition Bundle";
const regDyComment = new RegExp(String.raw`@product\s${strProduct}`, "i");
return regDyComment.test(text);
}
},
};
const banner = `/*!
* Dynamsoft MRZ Scanner JavaScript Library
* @product ${strProduct}
* @website http://www.dynamsoft.com
* @copyright Copyright ${new Date().getUTCFullYear()}, Dynamsoft Corporation
* @author Dynamsoft
* @version ${version}
* @fileoverview Dynamsoft MRZ Scanner JavaScript Edition is a ready-to-use SDK for web applications that accurately recognizes and parses Machine-Readable Zones on Machine-Readable Travel Documents.
* More info on Dynamsoft MRZ SCanner JS: https://www.dynamsoft.com/use-cases/mrz-scanner/
*/`;
const plugin_terser_es6 = terser({ ecma: 6, format: terser_format });
const plugin_terser_es5 = terser({ ecma: 5, format: terser_format });
const copyFiles = () => ({
name: "copy-files",
writeBundle() {
fs.copyFileSync("src/mrz-scanner.ui.html", "dist/mrz-scanner.ui.html");
fs.copyFileSync("src/mrz-scanner.template.json", "dist/mrz-scanner.template.json");
},
});
const external = [
"dynamsoft-core",
"dynamsoft-license",
"dynamsoft-capture-vision-router",
"dynamsoft-camera-enhancer",
"dynamsoft-code-parser",
"dynamsoft-label-recognizer",
"dynamsoft-utility",
];
const globals = {
"dynamsoft-core": "Dynamsoft.Core",
"dynamsoft-license": "Dynamsoft.License",
"dynamsoft-capture-vision-router": "Dynamsoft.CVR",
"dynamsoft-camera-enhancer": "Dynamsoft.DCE",
"dynamsoft-code-parser": "Dynamsoft.DCP",
"dynamsoft-label-recognizer": "Dynamsoft.DLR",
"dynamsoft-utility": "Dynamsoft.Utility",
};
export default [
// 1. Full bundle
{
input: "src/mrz-scanner.bundle.ts",
plugins: [
nodeResolve({ browser: true }),
typescript({
tsconfig: "./tsconfig.json",
declaration: true,
sourceMap: false,
}),
plugin_terser_es5,
copyFiles(),
{
writeBundle(options, bundle) {
let txt = fs
.readFileSync("dist/mrz-scanner.bundle.js", { encoding: "utf8" })
.replace(/Dynamsoft=\{\}/, "Dynamsoft=t.Dynamsoft||{}");
fs.writeFileSync("dist/mrz-scanner.bundle.js", txt);
},
},
],
output: [
{
file: "dist/mrz-scanner.bundle.js",
format: "umd",
name: "Dynamsoft",
banner: banner,
exports: "named",
sourcemap: false,
},
],
},
// 2. Standard UMD bundle
{
input: "src/mrz-scanner.ts",
external,
plugins: [
typescript({
tsconfig: "./tsconfig.json",
declaration: true,
sourceMap: false,
}),
plugin_terser_es5,
],
output: [
{
file: "dist/mrz-scanner.js",
format: "umd",
name: "Dynamsoft",
globals,
banner: banner,
exports: "named",
sourcemap: false,
extend: true,
},
],
},
// 3. ESM bundle
{
input: "src/mrz-scanner.bundle.esm.ts",
plugins: [
nodeResolve({ browser: true }),
typescript({
tsconfig: "./tsconfig.json",
declaration: true,
sourceMap: false,
}),
plugin_terser_es6,
],
output: [
{
file: "dist/mrz-scanner.bundle.mjs",
format: "es",
banner: banner,
exports: "named",
sourcemap: false,
},
],
},
// 4. ESM with externals
{
input: "src/mrz-scanner.ts",
external,
plugins: [
typescript({
tsconfig: "./tsconfig.json",
sourceMap: false,
}),
plugin_terser_es6,
],
output: [
{
file: "dist/mrz-scanner.mjs",
format: "es",
banner: banner,
exports: "named",
sourcemap: false,
},
],
},
// 5. No-content ESM
{
input: "src/mrz-scanner.no-content-bundle.esm.ts",
external,
plugins: [
typescript({
tsconfig: "./tsconfig.json",
sourceMap: false,
}),
plugin_terser_es6,
],
output: [
{
file: "dist/mrz-scanner.no-content-bundle.esm.js",
format: "es",
banner: banner,
exports: "named",
sourcemap: false,
},
],
},
// 6. Type declarations for CommonJS/UMD
{
input: "src/mrz-scanner.ts",
external,
plugins: [
dts(),
{
writeBundle(options, bundle) {
let txt = fs.readFileSync("dist/mrz-scanner.d.ts", { encoding: "utf8" }).replace(/([{,]) type /g, "$1 ");
fs.writeFileSync("dist/mrz-scanner.d.ts", txt);
},
},
],
output: [
{
file: "dist/mrz-scanner.d.ts",
format: "es",
},
],
},
// 7. Type declarations for ESM
{
input: "dist/types/mrz-scanner.bundle.esm.d.ts",
plugins: [
dts(),
{
// https://rollupjs.org/guide/en/#writebundle
writeBundle(options, bundle) {
fs.rmSync("dist/types", { recursive: true, force: true });
// change `export { type A }` to `export { A }`,
// so project use old typescript still works.
let txt = fs
.readFileSync("dist/mrz-scanner.bundle.esm.d.ts", { encoding: "utf8" })
.replace(/([{,]) type /g, "$1 ");
fs.writeFileSync("dist/mrz-scanner.bundle.esm.d.ts", txt);
},
},
],
output: [
{
file: "dist/mrz-scanner.bundle.esm.d.ts",
format: "es",
},
],
},
];