forked from moneybutton/paymail-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
126 lines (119 loc) · 3.04 KB
/
Copy pathrollup.config.js
File metadata and controls
126 lines (119 loc) · 3.04 KB
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
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 {fileURLToPath} from 'url';
import pkg from './package.json' with { type: "json" };
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
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'
},
{
file: pkg.module,
format: 'es'
}
],
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: ['bsv2'],
output: [
{
file: pkg.unpkg,
format: 'iife',
name: pkg.library,
globals: { bsv: 'bsv2' }
}
],
context: 'window',
plugins: [
replace(getReplacements()),
globals(),
builtins(),
resolve({
browser: true,
preferBuiltins: true
}),
commonJS({ }),
babel({
exclude: ['../../node_modules/**', 'node_modules/**'],
presets: [
[
'@babel/preset-env',
{
modules: false,
targets: {
browsers: ['> 2%']
}
}
]
],
babelHelpers: 'runtime',
plugins: getBabelPlugins({ includeTransformRuntime: true })
}),
terser({
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])
}
replacements["preventAssignment"]=true
return replacements
}