forked from emeraldpay/hashicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
49 lines (46 loc) · 1.28 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 resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
// import babel from 'rollup-plugin-babel';
import { terser } from "rollup-plugin-terser";
import serve from 'rollup-plugin-serve'
import livereload from 'rollup-plugin-livereload'
import pkg from './package.json';
const production = (process.env.BUILD == 'production');
const buildDir = production ? 'dist' : 'dev';
export default [
// browser-friendly UMD build
{
input: 'src/main.js',
output: {
name: 'hashicon',
dir: buildDir,
file: pkg.browser,
// sourcemap: true,
format: 'umd'
},
plugins: [
resolve(), // so Rollup can find `dependencies`
commonjs({
namedExports: { 'js-sha3': [ 'keccak256' ]}
}), // so Rollup can convert `ms` to an ES module
// babel({ exclude: ['node_modules/**'] }),
production && terser(), // minify, but only in production
!production && serve({
open: true,
contentBase: ".",
openPage: `/${buildDir}/index.html`,
host: "localhost",
port: 3000
}),
!production && livereload(buildDir)
]
},
// CommonJS (for Node) and ES module (for bundlers) build.
{
input: 'src/main.js',
output: [
{ file: pkg.main, format: 'cjs', dir: buildDir },
{ file: pkg.module, format: 'es', dir: buildDir }
]
}
];