-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
57 lines (53 loc) · 1.13 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
import { defineConfig } from 'rollup'
import typescript from '@rollup/plugin-typescript'
import pkg from './package.json'
const banner = `
/*!
* ${pkg.name} v${pkg.version}
* (c) 2022-${new Date().getFullYear()} sh-winter
* Released under the MIT License.
*/
`
const configs = [
{
input: ['./src/index.ts'],
'output:format': 'es',
'output:entryFileNames': '[name].mjs'
},
{
input: ['./src/index.ts'],
'output:format': 'cjs',
'output:entryFileNames': '[name].js'
},
{
input: ['./src/helper.ts'],
'output:format': 'es',
'output:entryFileNames': '[name].js'
}
]
/**
* 生成 rollup config
* @param {configs[0]} config
* @returns {import('rollup').RollupOptions}
*/
function genConfig (config) {
return {
input: config.input,
external: [
'path',
...Object.keys(pkg.dependencies)
],
plugins: [
typescript()
],
output: {
format: config['output:format'],
banner,
entryFileNames: config['output:entryFileNames'],
dir: 'dist',
name: pkg.name,
exports: 'named'
}
}
}
export default defineConfig(configs.map(genConfig))