-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathrollup.config.js
137 lines (131 loc) · 3.12 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
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
import babel from 'rollup-plugin-babel'
import builtins from 'rollup-plugin-node-builtins'
import commonJS from '@rollup/plugin-commonjs'
import fs from 'fs'
import globals from 'rollup-plugin-node-globals'
import { terser } from 'rollup-plugin-terser'
import path from 'path'
import pkg from './package.json'
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
const PRODUCTION_BUILD = process.env.NODE_ENV === 'production'
export default [
{
input: path.resolve(__dirname, 'src', 'index.js'),
external: isExternal,
output: [
{
file: pkg.main,
format: 'cjs',
sourcemap: true
},
{
file: pkg.module,
format: 'es',
sourcemap: true
}
],
plugins: [
replace(getReplacements()),
babel({
presets: [
[
'@babel/preset-env',
{
modules: false,
targets: {
node: '10'
}
}
]
],
plugins: getBabelPlugins()
})
]
},
...(PRODUCTION_BUILD ? [{
input: path.resolve(__dirname, 'src', 'index.js'),
external: ['bsv', 'bsv/message'],
output: [
{
file: pkg.unpkg,
format: 'iife',
name: pkg.library,
sourcemap: true,
globals: { bsv: 'bsv' }
}
],
context: 'window',
plugins: [
replace(getReplacements()),
globals(),
builtins(),
resolve({
browser: true,
preferBuiltins: true
}),
commonJS({
namedExports: {
'../../node_modules/loglevel/lib/loglevel.js': [
'setLevel',
'trace',
'debug',
'info',
'warn',
'error'
],
'../../node_modules/simple-in-memory-cache/dist/index.js': [
'createCache'
]
}
}),
babel({
exclude: ['../../node_modules/**', 'node_modules/**'],
presets: [
[
'@babel/preset-env',
{
modules: false,
targets: {
browsers: ['> 2%']
}
}
]
],
runtimeHelpers: true,
plugins: getBabelPlugins({ includeTransformRuntime: true })
}),
terser({
sourcemap: true,
output: {
preamble: getBanner()
}
})
]
}] : [])
]
function isExternal (candidate) {
return Object.keys(pkg.dependencies).some(dependency => {
return candidate.startsWith(dependency)
})
}
function getBanner () {
const filePath = path.resolve(__dirname, 'src', 'banner.js')
return fs.readFileSync(filePath).toString().trim()
}
function getBabelPlugins (options = {}) {
const plugins = [
'@babel/plugin-proposal-object-rest-spread'
]
if (options.includeTransformRuntime) {
plugins.push('@babel/plugin-transform-runtime')
}
return plugins
}
function getReplacements () {
const replacements = {}
for (const key in process.env) {
replacements[`process.env.${key}`] = JSON.stringify(process.env[key])
}
return replacements
}