-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
157 lines (153 loc) · 3.84 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import alias from '@rollup/plugin-alias'
import replace from '@rollup/plugin-replace'
import babel from 'rollup-plugin-babel'
import commonjs from 'rollup-plugin-commonjs'
import hashbang from 'rollup-plugin-hashbang'
import json from 'rollup-plugin-json'
import builtins from 'rollup-plugin-node-builtins'
import resolve from 'rollup-plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
import typescript from 'rollup-plugin-typescript2'
import nodeBuiltins from 'builtin-modules'
import pkg from './package.json'
const plugins = (options, before = [], after = []) => [
...before,
hashbang(),
resolve({
mainFields: ['module', 'jsnext', 'main'],
browser: options.target === 'browser',
preferBuiltins: options.target === 'node' ? true : false,
modulesOnly: options.target !== 'browser',
}),
commonjs({
namedExports: {
'@stencila/configa': ['collectConfig', 'helpUsage'],
},
}),
json(),
typescript({
tsconfig: `tsconfig${options.target === 'browser' ? '.browser' : ''}.json`,
}),
babel({
exclude: 'node_modules/**',
}),
...after,
]
const minify = terser({
output: { comments: false },
compress: {
keep_infinity: true,
pure_getters: true,
passes: 10,
},
ecma: 5,
warnings: true,
})
// The ESM and CJS builds are defined as separate configurations due to differences in the plugins.
// The ESM builds are not minified, nor environment variables inlined, as they will be processed
// by the consuming project compilers.
export default [
{
input: 'src/index.ts',
treeshake: {
propertyReadSideEffects: false,
},
plugins: plugins(
{ target: 'node' },
[
replace({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}),
],
[minify]
),
external: [...nodeBuiltins, ...Object.keys(pkg.dependencies)],
output: [
{
file: pkg.main,
sourcemap: true,
format: 'cjs',
},
],
},
{
input: 'src/index.ts',
treeshake: {
propertyReadSideEffects: false,
},
plugins: plugins({ target: 'node' }),
external: [...nodeBuiltins, ...Object.keys(pkg.dependencies)],
output: [
{
file: pkg.module,
sourcemap: true,
format: 'esm',
},
],
},
{
input: 'src/index.browser.ts',
treeshake: {
propertyReadSideEffects: false,
},
plugins: plugins(
{ target: 'browser' },
[
replace({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}),
alias({
entries: [
{ find: 'cross-fetch', replacement: 'fetch' },
{ find: 'isomorphic-ws', replacement: 'WebSocket' },
],
}),
],
[builtins(), minify]
),
// Do not bundle modules that provide things already
// in the browser. Put them in `output.globals`
external: ['cross-fetch', 'isomorphic-ws', '@stencila/configa'],
output: [
{
name: 'executa',
file: pkg.unpkg,
format: 'umd',
extend: true,
sourcemap: true,
globals: {
'cross-fetch': 'fetch',
'isomorphic-ws': 'WebSocket',
},
},
],
},
{
input: 'src/index.browser.ts',
treeshake: {
propertyReadSideEffects: false,
},
plugins: plugins(
{ target: 'browser' },
[
alias({
entries: [
{ find: 'cross-fetch', replacement: 'fetch' },
{ find: 'isomorphic-ws', replacement: 'WebSocket' },
],
}),
],
[builtins()]
),
// Do not bundle modules that provide things already
// in the browser. Put them in `output.globals`
external: ['cross-fetch', 'isomorphic-ws', '@stencila/configa'],
output: [
{
file: pkg.browser,
sourcemap: true,
format: 'esm',
},
],
},
]