forked from dataarts/dat.gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
55 lines (52 loc) · 1.3 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
/**
* dat-gui JavaScript Controller Library
* http://code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team, Google Creative Lab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
import fs from 'fs';
import path from 'path';
import resolve from 'rollup-plugin-node-resolve';
import cleanup from 'rollup-plugin-cleanup';
import babel from 'rollup-plugin-babel';
import sass from 'rollup-plugin-sass';
const banner = fs.readFileSync(path.join(__dirname, 'licenseBanner.txt'));
export default {
input: 'src/dat/index.js',
output: [{
// TODO: Remove default exports, and this line, in v0.8.0.
exports: 'named',
file: './build/dat.gui.js',
format: 'umd',
name: 'dat',
sourcemap: true,
banner: banner
}, {
file: './build/dat.gui.module.js',
format: 'es',
sourcemap: true,
banner: banner
}],
watch: {
include: 'src/**'
},
plugins: [
resolve(),
sass({
insert: true,
output: 'build/dat.gui.css',
options: {outputStyle: 'compressed'}
}),
babel({
plugins: ['external-helpers'],
exclude: 'node_modules/**'
}),
cleanup()
]
};