-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
58 lines (55 loc) · 1.23 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
51
52
53
54
55
56
57
58
import { resolve } from 'path'
import { defineConfig } from 'rollup'
import esbuild from 'rollup-plugin-esbuild'
import buble from '@rollup/plugin-buble'
import { terser } from 'rollup-plugin-terser'
import dts from 'rollup-plugin-dts'
import pkg from './package.json'
const moduleName = pkg.name.replace(/^@.*\//, '')
const banner = `/*!
* ${moduleName} v${pkg.version}
* (c) ${new Date().getFullYear()} ${pkg.author.name}<${pkg.author.email}>
*/`
export default [].concat(
defineConfig({
input: resolve(__dirname, 'src/index.ts'),
output: [
{
file: pkg.main,
format: 'umd',
name: moduleName,
exports: 'named',
sourcemap: 'inline',
banner,
},
{
file: pkg.main.replace('.js', '.min.js'),
format: 'umd',
name: moduleName,
exports: 'named',
// sourcemap: "inline",
banner,
plugins: [terser()],
},
{
file: pkg.module,
format: 'esm',
banner,
},
],
plugins: [
esbuild(),
buble(),
],
}),
defineConfig({
input: resolve(__dirname, 'src/index.ts'),
output: [
{
file: pkg.types,
format: 'es',
},
],
plugins: [dts()],
}),
)