-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
rollup.config.js
97 lines (92 loc) · 3.19 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
/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable @typescript-eslint/camelcase */
/* eslint-disable import/no-default-export */
import babel from '@rollup/plugin-babel';
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
import sourceMaps from 'rollup-plugin-sourcemaps';
import { terser } from 'rollup-plugin-terser';
import typescript from 'rollup-plugin-typescript2';
import pkg from './package.json';
const makeExternalPredicate = (externalArr) => {
if (externalArr.length === 0) {
return () => false;
}
const pattern = new RegExp(`^(${externalArr.join('|')})($|/)`);
return (id) => pattern.test(id);
};
const extensions = ['.ts', '.tsx'];
function createConfigInternal({ format, production }) {
return {
input: 'src/index.ts',
output: {
file: 'lib/' + format + '/relay-hooks' + (production ? '.min' : '') + '.js',
format,
name: 'relay-hooks',
indent: false,
globals: {
'fbjs/lib/areEqual': 'areEqual',
'fbjs/lib/invariant': 'invariant',
'fbjs/lib/warning': 'warning',
'@restart/hooks/useMounted': 'useMounted',
react: 'React',
'relay-runtime': 'relayRuntime',
},
sourcemap: true,
exports: 'named',
},
external: makeExternalPredicate([
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
]),
plugins: [
nodeResolve({
extensions,
}),
replace({
'import * as ': 'import ',
}),
typescript({
tsconfigOverride: {
compilerOptions: {
declaration: false,
declarationMap: false,
module: 'es2015',
esModuleInterop: true,
sourceMap: true,
importHelpers: false,
},
},
}),
format === 'umd' &&
commonjs({
include: /\/node_modules\//,
}),
babel({ extensions, include: ['src/**/*'], babelHelpers: 'bundled' }),
replace({
'process.env.NODE_ENV': JSON.stringify(production ? 'production' : 'development'),
}),
sourceMaps(),
production &&
terser({
output: { comments: false },
compress: {
keep_infinity: true,
pure_getters: true,
passes: 10,
},
ecma: 5,
toplevel: format === 'cjs',
warnings: true,
}),
],
};
}
function createConfig(format) {
return [
createConfigInternal({ format, production: false }),
createConfigInternal({ format, production: true }),
];
}
export default [...createConfig('umd')];