forked from blocknative/web3-onboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
74 lines (73 loc) · 1.58 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
import svelte from "rollup-plugin-svelte"
import resolve from "rollup-plugin-node-resolve"
import babel from "rollup-plugin-babel"
import commonjs from "rollup-plugin-commonjs"
import globals from "rollup-plugin-node-globals"
import json from "rollup-plugin-json"
import image from "rollup-plugin-img"
import builtins from "@joseph184/rollup-plugin-node-builtins"
import { terser } from "rollup-plugin-terser"
export default [
{
input: "src/index.js",
output: {
format: "iife",
name: "onboard",
file: "dist/iife/onboard.js",
esModule: false
},
plugins: [
image(),
json(),
svelte(),
resolve({
preferBuiltins: true,
browser: true,
dedupe: importee =>
importee === "svelte" || importee.startsWith("svelte/")
}),
commonjs(),
globals(),
babel({ exclude: "node_modules/**" }),
builtins(),
terser()
]
},
{
input: "src/index.js",
external: [
"bowser",
"bnc-sdk",
"ow",
"bignumber.js",
"svelte-i18n",
"svelte",
"svelte/store",
"svelte/internal",
"svelte/transition",
"promise-cancelable",
"regenerator-runtime/runtime",
"@portis/web3",
"@walletconnect/web3-provider",
"fortmatic",
"squarelink"
],
plugins: [
svelte(),
json(),
image(),
commonjs(),
babel({ exclude: "node_modules/**" })
],
output: [
{
dir: "dist/esm",
format: "esm"
},
{
dir: "dist/cjs",
format: "cjs"
}
]
}
]