-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
75 lines (70 loc) · 1.46 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
import json from '@rollup/plugin-json';
import bundleSize from 'rollup-plugin-bundle-size';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
function onwarn(warning, defaultHandler) {
if (warning.code !== 'CIRCULAR_DEPENDENCY') {
defaultHandler(warning);
}
}
const name = 'aqsql';
const external = [ 'arquero', 'fast-csv', 'fs', 'pg', 'uuid' ];
const globals = { 'arquero': 'arquero', 'fast-csv': 'csv', 'fs': 'fs', 'pg': 'pg', 'uuid': 'uuid' };
const plugins = [
json(),
bundleSize(),
nodeResolve({ modulesOnly: true }),
];
export default [
{
input: 'src/index-node.js',
external: external,
plugins,
onwarn,
output: [
{
file: 'dist/arquero-sql.node.js',
format: 'cjs',
name
}
]
},
{
input: 'src/index.js',
external,
plugins,
onwarn,
output: [
{
file: 'dist/arquero-sql.js',
format: 'umd',
globals,
name
},
{
file: 'dist/arquero-sql.min.js',
format: 'umd',
sourcemap: true,
plugins: [ terser({ ecma: 2018 }) ],
globals,
name
}
]
}
];
// export default {
// input: 'src/index.js',
// plugins: [
// json(),
// bundleSize(),
// nodeResolve({ modulesOnly: true })
// ],
// onwarn,
// output: [
// {
// file: 'dist/arquero-sql.js',
// name: 'aq',
// format: 'umd'
// },
// ]
// };