forked from facebookarchive/rebound-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
49 lines (47 loc) · 1.17 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
import babel from 'rollup-plugin-babel';
import stripBanner from 'rollup-plugin-strip-banner';
import uglify from 'rollup-plugin-uglify';
import resolve from 'rollup-plugin-node-resolve';
import * as path from 'path';
const shouldMinify = process.env.NODE_ENV === 'production';
export default {
input: 'src/index.js',
output: {
name: 'rebound',
file: path.join(
__dirname,
'dist',
shouldMinify ? 'rebound.min.js' : 'rebound.js',
),
format: 'umd',
banner: `
/**
* Copyright (c) 2013, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
`.trim(),
},
plugins: [
resolve(),
babel({
plugins: ['external-helpers'],
exclude: 'node_modules/**',
}),
stripBanner({
exclude: 'node_modules/**/*',
sourceMap: true,
}),
shouldMinify &&
uglify({
compress: true,
mangle: true,
output: {
comments: /Copyright/,
},
}),
],
};