-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
rollup.config.js
42 lines (39 loc) · 1.03 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
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import resolve from 'rollup-plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import pkg from './package.json';
const config = {
input: 'src/index.js',
output: {
name: 'react-scroll-trigger',
file: './index.js',
format: 'umd',
globals: {
'react': 'React',
'react-dom': 'ReactDOM',
},
banner: `/*! ${pkg.name} v${pkg.version} | (c) ${new Date().getFullYear()} Ryan Hefner | ${pkg.license} License | https://github.com/${pkg.repository} !*/`,
footer: '/* follow me on Twitter! @ryanhefner */',
},
external: [
'react',
'react-dom',
],
plugins: [
babel({
exclude: 'node_modules/**',
externalHelpers: process.env.BABEL_ENV === 'umd',
}),
resolve(),
commonjs({
include: /node_modules/,
}),
json(),
],
};
if (process.env.NODE_ENV === 'production') {
config.plugins.push(terser());
}
export default config;