-
Notifications
You must be signed in to change notification settings - Fork 23
/
rollup.config.mjs
73 lines (67 loc) · 1.78 KB
/
rollup.config.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
import fs from 'fs'
import path from 'path'
import {URL} from 'url'
import dts from 'rollup-plugin-dts'
import typescript from '@rollup/plugin-typescript'
// eslint-disable-next-line es-x/no-import-meta
const __dirname = path.dirname(new URL(import.meta.url).pathname)
const pkg = JSON.parse(fs.readFileSync(path.join(__dirname, 'package.json')))
const license = fs.readFileSync('LICENSE').toString('utf-8').trim()
const banner = `
/**
* @wharfkit/antelope v${pkg.version}
* ${pkg.homepage}
*
* @license
* ${license.replace(/\n/g, '\n * ')}
*/
`.trim()
const external = Object.keys(pkg.dependencies)
export default [
{
input: 'src/index.ts',
output: {
banner,
file: pkg.main,
format: 'cjs',
sourcemap: true,
},
plugins: [typescript({target: 'es6'})],
external,
onwarn,
},
{
input: 'src/index.ts',
output: {
banner,
file: pkg.module,
format: 'esm',
sourcemap: true,
},
plugins: [typescript({target: 'es2020'})],
external,
onwarn,
},
{
input: 'src/index.ts',
output: {banner, file: pkg.types, format: 'esm'},
onwarn,
plugins: [dts()],
},
]
function onwarn(warning, rollupWarn) {
if (warning.code === 'CIRCULAR_DEPENDENCY') {
// unnecessary warning
return
}
if (
warning.code === 'UNUSED_EXTERNAL_IMPORT' &&
warning.source === 'tslib' &&
warning.names[0] === '__read'
) {
// when using ts with importHelpers: true rollup complains about this
// seems safe to ignore since __read is not actually imported or used anywhere in the resulting bundles
return
}
rollupWarn(warning)
}