-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
69 lines (67 loc) · 1.45 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
/* eslint no-console: 0 */
const { rollup } = require('rollup');
const babel = require('rollup-plugin-babel');
const json = require('rollup-plugin-json');
const resolve = require('rollup-plugin-node-resolve');
const commonjs = require('rollup-plugin-commonjs');
const minify = require('rollup-plugin-babel-minify');
rollup({
input: 'src/scripts/page.js',
plugins: [
resolve({
mainFields: ['jsnext', 'module', 'main'],
browser: true,
}),
commonjs(),
json({
exclude: ['node_modules/**'],
}),
babel({
exclude: 'node_modules/**',
// plugins: ['external-helpers'],
}),
minify({
comments: false,
sourceMap: true,
}),
],
}).then(bundle => (
bundle.write({
format: 'es',
file: 'public/scripts/page.js',
})
)).then(() => {
console.log('page.js bundle created!');
}).catch((error) => {
console.log(error);
});
rollup({
input: 'src/scripts/edit.js',
plugins: [
resolve({
mainFields: ['jsnext', 'module', 'main'],
browser: true,
}),
commonjs(),
json({
exclude: ['node_modules/**'],
}),
babel({
exclude: 'node_modules/**',
// plugins: ['external-helpers'],
}),
minify({
comments: false,
sourceMap: true,
}),
],
}).then(bundle => (
bundle.write({
format: 'es',
file: 'public/scripts/edit.js',
})
)).then(() => {
console.log('edit.js bundle created!');
}).catch((error) => {
console.log(error);
});