-
Notifications
You must be signed in to change notification settings - Fork 9
/
rollup.config.ts
83 lines (78 loc) · 1.68 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import commonjs from 'rollup-plugin-commonjs'
import resolve from 'rollup-plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
import typescript from 'rollup-plugin-typescript'
const pkg = require('./package.json')
const pkgName = 'router'
const umdName = 'TinyRequestRouter'
const banner = `
/*!
* ${pkg.name} v${pkg.version} by ${pkg.author}
* ${pkg.homepage}
* @license ${pkg.license}
*/
`.trim()
export default [
/* router.js and router.mjs */
{
input: `src/${pkgName}.ts`,
output: [
{ file: pkg.main, format: 'cjs', sourcemap: true, banner },
{ file: pkg.module, format: 'esm', sourcemap: true, banner }
],
plugins: [
resolve(),
commonjs(),
typescript({
typescript: require('typescript')
})
],
external: ['url-pattern']
},
/* router.browser.js and router.browser.mjs */
{
input: `src/${pkgName}.ts`,
output: [
{
file: pkg.browser[pkg.main],
format: 'umd',
name: umdName,
sourcemap: true
},
{
file: pkg.browser[pkg.module],
format: 'esm',
sourcemap: true,
banner
}
],
plugins: [
resolve({ browser: true }),
commonjs(),
typescript({
typescript: require('typescript')
})
]
},
/* router.min.js */
{
input: `src/${pkgName}.ts`,
output: [
{
file: pkg.unpkg,
format: 'umd',
name: umdName,
sourcemap: true,
banner
}
],
plugins: [
resolve({ browser: true }),
commonjs(),
typescript({
typescript: require('typescript')
}),
terser({ output: { comments: 'some' } })
]
}
]