-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.ts
60 lines (56 loc) · 1.4 KB
/
rollup.config.ts
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
59
60
import { defineConfig, Plugin } from 'rollup'
import del from 'rollup-plugin-delete'
import ts from 'rollup-plugin-typescript2'
import terser from '@rollup/plugin-terser'
import dts from 'rollup-plugin-dts'
import peerDepsExternal from 'rollup-plugin-peer-deps-external'
import filesize from 'rollup-plugin-filesize'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import fs from 'fs'
const pkg = JSON.parse(fs.readFileSync('./package.json', { encoding: 'utf8' }))
// const upCaseFirst = (str: string) => (str[0] ? str[0].toUpperCase() + str.slice(1) : '')
const input = 'src/index.ts'
const pluginGlobelName = 'julian'
const rollupConfig = [
defineConfig({
input,
output: [
{
format: 'iife',
name: pluginGlobelName,
file: 'dist/index.iife.js'
},
{
format: 'cjs',
file: pkg.main,
exports: 'named',
footer: 'module.exports = Object.assign(exports?.default ?? {}, exports);',
sourcemap: true
},
{
format: 'es',
file: pkg.module,
sourcemap: true
}
],
plugins: [
del({ targets: ['dist/*'] }),
peerDepsExternal() as Plugin,
nodeResolve(),
ts(),
terser(),
filesize()
]
}),
defineConfig({
input,
output: [
{
format: 'es',
file: pkg.types
}
],
plugins: [dts()]
})
]
export default rollupConfig