-
Notifications
You must be signed in to change notification settings - Fork 179
/
Copy pathrollup.config.js
86 lines (80 loc) · 1.97 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
import { join } from 'path'
import alias from '@rollup/plugin-alias'
import babel from '@rollup/plugin-babel'
import commonjs from '@rollup/plugin-commonjs'
import json from '@rollup/plugin-json'
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
export const ALIAS_ENTRIES = {
'@opentrons/api-client': join(__dirname, './api-client/src/index.ts'),
'@opentrons/react-api-client': join(
__dirname,
'./react-api-client/src/index.ts'
),
}
const input = ({ packageName }) => ({
input: join(packageName, 'src', 'index.ts'),
})
const output = ({ packageName, browser }) => ({
output: [
{
file: join(
packageName,
'dist',
`${packageName}${browser ? '.browser' : ''}.js`
),
format: 'cjs',
sourcemap: true,
plugins: [terser()],
},
{
file: join(
packageName,
'dist',
`${packageName}${browser ? '.browser' : ''}.mjs`
),
format: 'esm',
sourcemap: true,
plugins: [terser()],
},
],
})
const plugins = ({ browser }) => ({
plugins: [
replace({
preventAssignment: true,
values: {
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
},
}),
alias({
entries: ALIAS_ENTRIES,
}),
babel({
babelHelpers: 'bundled',
extensions: ['.ts', '.tsx'],
exclude: '**/node_modules/**',
rootMode: 'upward',
}),
resolve({
preferBuiltins: true,
extensions: ['.mjs', '.js', '.json', '.node', '.ts', '.tsx'],
browser,
}),
json(),
commonjs(),
],
})
const configs = [
{ packageName: 'api-client' },
{ packageName: 'api-client', browser: true },
{ packageName: 'react-api-client', browser: true },
].map(options => ({
...input(options),
...output(options),
...plugins(options),
external: ['react'],
}))
// eslint-disable-next-line import/no-default-export
export default configs