-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathrollup.config.js
50 lines (47 loc) · 1.38 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
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';
const transformBuildDir = str => str.replace('dist', buildDir);
export default [
// browser-friendly UMD build
{
input: 'src/main.js',
output: {
name: 'hashicon',
file: transformBuildDir(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: transformBuildDir(pkg.main), format: 'cjs' },
{ file: transformBuildDir(pkg.module), format: 'es' }
],
external: [ 'js-sha3' ]
}
];