-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.helpers.js
62 lines (57 loc) · 1.46 KB
/
rollup.helpers.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
import { config } from 'dotenv';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import babel from 'rollup-plugin-babel';
// import flow from 'rollup-plugin-flow';
import json from 'rollup-plugin-json';
import { uglify } from 'rollup-plugin-uglify';
import { minify } from 'uglify-es';
export const LIBRARY_FILE_NAME = 'tree-walker'; // dummy, replace with project name
export const LIBRARY_VAR_NAME = 'TreeWalker'; // dummy, replace with project name
config();
export const plugins = [
resolve(),
// flow(),
babel({
plugins: [
'babel-plugin-transform-class-properties',
'babel-plugin-transform-flow-strip-types',
['babel-plugin-transform-object-rest-spread', { useBuiltIns: true }],
'babel-plugin-external-helpers',
],
exclude: 'node_modules/**',
externalHelpers: true,
babelrc: false,
}),
commonjs(),
json(),
];
export const baseConfig = {
input: 'source/index.js',
output: [
{
file: `dist/${LIBRARY_FILE_NAME}.js`,
sourcemap: true,
exports: 'named',
name: LIBRARY_VAR_NAME,
format: 'cjs',
},
],
plugins,
external: [
'@actualwave/has-own',
],
};
export const minConfig = {
input: 'source/index.js',
output: [
{
file: `dist/${LIBRARY_FILE_NAME}.min.js`,
sourcemap: true,
exports: 'named',
name: LIBRARY_VAR_NAME,
format: 'umd',
},
],
plugins: [...plugins, uglify({}, minify)],
};