This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
forked from apollographql/apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
91 lines (84 loc) · 1.85 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
import nodeResolve from '@rollup/plugin-node-resolve';
import { terser as minify } from 'rollup-plugin-terser';
import path from 'path';
const packageJson = require('../package.json');
const entryPoints = require('./entryPoints');
const distDir = './dist';
function isExternal(id) {
return !(id.startsWith("./") || id.startsWith("../"));
}
function prepareCJS(input, output) {
return {
input,
external(id) {
return isExternal(id);
},
output: {
file: output,
format: 'cjs',
sourcemap: true,
exports: 'named',
externalLiveBindings: false,
},
plugins: [
nodeResolve(),
],
};
}
function prepareCJSMinified(input) {
return {
input,
output: {
file: input.replace('.js', '.min.js'),
format: 'cjs',
},
plugins: [
minify({
mangle: {
toplevel: true,
},
compress: {
toplevel: true,
global_defs: {
'@process.env.NODE_ENV': JSON.stringify('production'),
},
},
}),
],
};
}
function prepareBundle({
dirs,
bundleName = dirs[dirs.length - 1],
extensions,
}) {
const dir = path.join(distDir, ...dirs);
return {
input: `${dir}/index.js`,
external(id, parentId) {
return isExternal(id) || entryPoints.check(id, parentId);
},
output: {
file: `${dir}/${bundleName}.cjs.js`,
format: 'cjs',
sourcemap: true,
exports: 'named',
externalLiveBindings: false,
},
plugins: [
extensions ? nodeResolve({ extensions }) : nodeResolve(),
],
};
}
export default [
...entryPoints.map(prepareBundle),
// Convert the ESM entry point to a single CJS bundle.
prepareCJS(
'./dist/index.js',
'./dist/apollo-client.cjs.js',
),
// Minify that single CJS bundle.
prepareCJSMinified(
'./dist/apollo-client.cjs.js',
),
];