forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
45 lines (43 loc) · 1.35 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
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import copy from 'rollup-plugin-copy';
import {terser} from "rollup-plugin-terser";
function resolveWithZksyncCryptoReplace(options) {
const plugin = resolve(options);
const defaultPluginResolveId = plugin.resolveId;
plugin.resolveId = async (source, importer) => {
const defaultResolveResult = await defaultPluginResolveId(source, importer);
if (source === "zksync-crypto") {
defaultResolveResult.id = defaultResolveResult.id.replace("zksync-crypto-bundler", "zksync-crypto-web");
}
return defaultResolveResult;
}
return plugin;
}
export default [
{
input: 'build/index.js',
output: {
file: 'dist/main.js',
format: 'iife',
name: 'zksync',
globals: {
ethers: 'ethers'
},
},
external: ['ethers'],
plugins: [
resolveWithZksyncCryptoReplace({
browser: true,
}),
commonjs(),
json(),
copy({
targets: [{src: 'node_modules/zksync-crypto/dist/zksync-crypto-web_bg.wasm', dest: 'dist/'}],
verbose: true
}),
terser(),
]
},
];