forked from dice-roller/rpg-dice-roller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
36 lines (34 loc) · 995 Bytes
/
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
import commonjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
const { terser } = require('rollup-plugin-terser');
const { eslint } = require('rollup-plugin-eslint');
import babel from 'rollup-plugin-babel';
import banner from 'rollup-plugin-banner';
const path = require('path');
const format = process.env.FORMAT || 'esm';
const production = !process.env.BUILD || (process.env.BUILD === 'prod');
const es6 = format === 'esm';
export default {
input: 'src/index.js',
output: {
file: `lib/${format}/bundle${production ? '.min' : ''}.js`,
format: format,
name: 'rpgDiceRoller',
},
plugins: [
// lint the files
eslint(),
// resolve third party library imports
resolve(),
// handle commonJS modules
commonjs(),
!es6 ? babel({
exclude: 'node_modules/**',
}) : null,
// minify for production
production ? terser() : null,
banner({
file: path.join(__dirname, 'banner.txt')
}),
],
};