-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.js
72 lines (68 loc) · 1.36 KB
/
build.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
import esbuild from 'esbuild'
import GlobalsPlugin from 'esbuild-plugin-globals'
const makeAllPackagesExternalPlugin = {
name: 'make-all-packages-external',
setup(build) {
let filter = /^[^.\/]|^\.[^.\/]|^\.\.[^\/]/ // Must not start with "/" or "./" or "../"
build.onResolve({ filter }, args => ({ path: args.path, external: true }))
},
}
esbuild.build({
entryPoints: ['src/index.js'],
outfile: 'dist/txforge.min.js',
globalName: 'txforge',
bundle: true,
format: 'iife',
platform: 'browser',
target: 'es6',
minify: true,
keepNames: true,
sourcemap: true,
define: {
VARIANT: 'browser'
},
plugins: [
GlobalsPlugin({
'crypto': 'null',
'@runonbitcoin/nimble': 'nimble'
})
]
})
esbuild.build({
entryPoints: ['src/index.js'],
outfile: 'dist/txforge.bundled.min.js',
globalName: 'txforge',
bundle: true,
format: 'iife',
platform: 'browser',
target: 'es6',
minify: true,
keepNames: true,
sourcemap: true,
define: {
VARIANT: 'browser'
},
plugins: [
GlobalsPlugin({
'crypto': 'null'
})
]
})
esbuild.build({
entryPoints: [
'src/index.js',
'src/extra/r-puzzle.js'
],
outdir: 'dist/cjs',
outExtension: {
'.js': '.cjs'
},
bundle: true,
format: 'cjs',
platform: 'node',
target: 'node10',
keepNames: true,
plugins: [
makeAllPackagesExternalPlugin
]
})