-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
44 lines (39 loc) · 957 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
37
38
39
40
41
42
43
44
import { getBabelOutputPlugin } from '@rollup/plugin-babel'
import commonjs from '@rollup/plugin-commonjs'
import replace from '@rollup/plugin-replace'
import pkg from './package.json'
import typescript from '@rollup/plugin-typescript'
import { nodeResolve } from '@rollup/plugin-node-resolve';
const plugins = [
replace({
__DEV__: `process.env.NODE_ENV !== 'production'`,
__VERSION__: pkg.version,
}),
nodeResolve(),
commonjs(),
typescript(),
getBabelOutputPlugin({
presets: [['@babel/preset-env', { useBuiltIns: 'usage', targets: { node: "8" }, corejs: 3 }]],
allowAllFormats: true
}),
]
const core = {
input: './src/index.ts',
output: [
{
file: './dist/index.common.js',
format: 'cjs',
},
{
file: './dist/index.esm.js',
format: 'esm',
},
{
name: 'UpdateNotice',
file: './dist/index.umd.js',
format: 'umd',
},
],
plugins,
}
export default [core]