forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
40 lines (38 loc) · 1.14 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
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
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(),
terser()
]
}
];