forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
60 lines (55 loc) Β· 1.95 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
import cjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import path from 'path';
import esbuild from 'rollup-plugin-esbuild';
import {terser} from 'rollup-plugin-terser';
import {defineConfig} from 'rollup';
import semver from 'semver';
import {brotliCompressSync} from 'zlib';
import pkg from './package.json';
function wrapOutput() {
return {
name: `wrap-output`,
generateBundle(options, bundle, isWrite) {
const bundles = Object.keys(bundle);
if (bundles.length !== 1)
throw new Error(`Expected only one bundle, got ${bundles.length}`);
const outputBundle = bundle[bundles[0]];
outputBundle.code = `let hook;\n\nmodule.exports.getContent = () => {\n if (typeof hook === \`undefined\`)\n hook = require('zlib').brotliDecompressSync(Buffer.from('${brotliCompressSync(
outputBundle.code.replace(/\r\n/g, `\n`),
).toString(`base64`)}', 'base64')).toString();\n\n return hook;\n};\n`;
},
};
}
// eslint-disable-next-line arca/no-default-export
export default defineConfig({
input: `./sources/worker-zip/Worker.ts`,
output: {
file: `./sources/worker-zip/index.js`,
format: `cjs`,
strict: false,
generatedCode: `es2015`,
},
plugins: [
json(),
resolve({
extensions: [`.mjs`, `.js`, `.ts`, `.tsx`, `.json`],
rootDir: path.join(__dirname, `../../`),
jail: path.join(__dirname, `../../`),
preferBuiltins: true,
}),
esbuild({
tsconfig: false,
target: `node${semver.minVersion(pkg.engines.node).version}`,
define: {
document: `undefined`,
XMLHttpRequest: `undefined`,
crypto: `undefined`,
},
}),
cjs({transformMixedEsModules: true, extensions: [`.js`, `.ts`]}),
terser({ecma: 2019}),
wrapOutput(),
],
});