-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
64 lines (63 loc) · 1.42 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
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import builtins from 'rollup-plugin-node-builtins';
import globals from 'rollup-plugin-node-globals';
import closure from 'rollup-plugin-closure-compiler-js';
import json from '@rollup/plugin-json';
export default [
{
input: 'node_modules/markmap-lib/dist/transform.js',
output: {
file: 'dist/markmap-lib.transform.bundle.js',
format: 'umd',
browser: true,
name: 'transform'
},
plugins: [
globals(),
builtins(),
resolve({
preferBuiltins: false,
browser: true,
// pass custom options to the resolve plugin
customResolveOptions: {
moduleDirectory: 'node_modules'
}
}),
commonjs(),
closure({
compilationLevel: 'WHITESPACE',
languageIn: 'ES6',
languageOut: 'ES6'
})
]
},
{
input: 'node_modules/markmap-lib/dist/view.js',
output: {
file: 'dist/markmap-lib.view.bundle.js',
format: 'umd',
browser: true,
name: 'view'
},
plugins: [
globals(),
builtins(),
json(),
resolve({
preferBuiltins: false,
browser: true,
// pass custom options to the resolve plugin
customResolveOptions: {
moduleDirectory: 'node_modules'
}
}),
commonjs(),
closure({
compilationLevel: 'WHITESPACE',
languageIn: 'ES6',
languageOut: 'ES6'
})
]
}
];