forked from influenceth/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
34 lines (28 loc) · 1012 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
import cleanup from 'rollup-plugin-cleanup';
import { terser } from 'rollup-plugin-terser';
import { getBabelOutputPlugin } from '@rollup/plugin-babel';
import { importAssertionsPlugin } from 'rollup-plugin-import-assert';
import { importAssertions } from 'acorn-import-assertions';
const { env: { NODE_ENV } } = process;
const input = './src/index.js';
const output = [
{ file: './build/index.cjs', format: 'cjs', sourcemap: (NODE_ENV !== 'production') },
{ file: './build/index.js', format: 'es', sourcemap: (NODE_ENV !== 'production') }
];
const plugins = [
cleanup({
comments: 'none',
extensions: ['*']
}),
getBabelOutputPlugin({ presets: ['@babel/preset-env'] }),
importAssertionsPlugin()
];
// Minify code when publishing, this significantly decreases the module
// size increased introduced by shipping both ESM and CJS:
if (process.env.NODE_ENV === 'production') plugins.push(terser());
export default {
acornInjectPlugins: [importAssertions],
input,
output,
plugins
};