forked from leaonline/easy-speech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.dist.config.js
42 lines (41 loc) · 917 Bytes
/
rollup.dist.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
import { babel, getBabelOutputPlugin } from '@rollup/plugin-babel'
import commonjs from '@rollup/plugin-commonjs'
import copy from 'rollup-plugin-copy'
export default [{
input: 'src/EasySpeech.js',
output: [
{
file: 'dist/EasySpeech.js',
format: 'es'
},
{
file: 'dist/EasySpeech.es5.js',
format: 'es',
plugins: [getBabelOutputPlugin({ presets: ['@babel/preset-env'] })]
},
{
file: 'dist/EasySpeech.cjs.js',
format: 'cjs',
plugins: [getBabelOutputPlugin({ presets: ['@babel/preset-env'] })]
}
]
}, {
input: 'src/EasySpeech.js',
output: {
file: 'dist/EasySpeech.iife.js',
format: 'iife',
name: 'EasySpeech'
},
plugins: [
commonjs(),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled'
}),
copy({
targets: [
{ src: 'src/index.d.ts', dest: 'dist/' }
]
})
]
}]