forked from FlumensIO/bigu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
46 lines (43 loc) · 1.27 KB
/
rollup.config.mjs
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
// rollup.config.js
//import resolve from '@rollup/plugin-node-resolve';
//import babel from '@rollup/plugin-babel';
//import commonjs from '@rollup/plugin-commonjs';
import terser from '@rollup/plugin-terser';
const production = !process.env.ROLLUP_WATCH;
export default [
// {
// input: 'src/index.js',
// output: {
// file: 'dist/gridrefutils.js',
// format: 'es', // 'cjs'
// sourcemap: true,
// exports: "named",
// name: 'gridrefutils',
// },
// plugins: [
// resolve(),
// babel({
// exclude: 'node_modules/**', // only transpile our source code
// babelHelpers: 'runtime'
// }),
// commonjs(), // converts npm packages to ES modules
// production && terser() // minify, but only in production
// ]
// },
{
input: 'src/index.js',
output: {
file: 'dist/gridrefutils.mjs',
format: 'esm',
sourcemap: true,
exports: "named",
name: 'gridrefutils',
},
plugins: [
production && false && terser({
module: true
})
//production && terser() // minify, but only in production
]
}
];