forked from vuelidate/vuelidate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.base.mjs
96 lines (88 loc) · 2.07 KB
/
rollup.base.mjs
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import terser from '@rollup/plugin-terser'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import { babel } from '@rollup/plugin-babel'
import copy from 'rollup-plugin-copy'
export function generateOutputConfig (fileName = 'index', opts) {
return {
mjs: {
file: `dist/${fileName}.mjs`,
format: 'es',
...opts,
},
cjs: {
file: `dist/${fileName}.cjs`,
format: 'cjs',
...opts,
},
global: {
file: `dist/${fileName}.iife.min.js`,
format: 'iife',
...opts,
}
}
}
function generateConfigFactory({
libraryName,
input = 'src/index.js',
outputConfigs,
copyTypes = false
}) {
/**
* @type {import('rollup').RollupOptions}
*/
const config = {
input,
external: ['vue-demi'],
plugins: [resolve(), commonjs(), babel({ babelHelpers: 'bundled' })],
output: []
}
/**
* Create config output
* @param {string} name
* @param {import('rollup').OutputOptions} options
* @return {*}
*/
function createConfig (name, options) {
const opts = { ...options }
opts.exports = 'named'
opts.globals = {
...opts.globals,
'vue-demi': 'VueDemi'
}
const isGlobalBuild = name === 'global'
const isMinified = opts.file.includes('.min.')
if (isGlobalBuild) opts.name = libraryName
opts.plugins = []
if (isMinified) {
opts.plugins.push(
terser()
)
}
if (copyTypes) {
opts.plugins.push(
copy({
hook: 'writeBundle',
flatten: true,
targets: [
{
src: 'index.d.ts',
dest: 'dist',
rename: 'index.d.cts'
},
{
src: 'index.d.ts',
dest: 'dist',
rename: 'index.d.mts'
}
]
})
)
}
return opts
}
const packageBuilds = Object.keys(outputConfigs)
config.output = packageBuilds.map(buildName => createConfig(buildName, outputConfigs[buildName]))
return config
}
export { generateConfigFactory }