forked from PostHog/posthog-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
74 lines (67 loc) · 2.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import babel from '@rollup/plugin-babel'
import json from '@rollup/plugin-json'
import resolve from '@rollup/plugin-node-resolve'
import typescript from '@rollup/plugin-typescript'
import { dts } from 'rollup-plugin-dts'
import pkg from './package.json'
import terser from '@rollup/plugin-terser'
import { visualizer } from 'rollup-plugin-visualizer'
import fs from 'fs'
const plugins = [
json(),
resolve({ browser: true }),
typescript({ sourceMap: true }),
babel({
extensions: ['.js', '.jsx', '.ts', '.tsx'],
babelHelpers: 'bundled',
presets: ['@babel/preset-env'],
}),
terser({ toplevel: true }),
visualizer(),
]
/** @type {import('rollup').RollupOptions[]} */
const entrypoints = fs.readdirSync('./src/entrypoints').map((file) => {
const fileParts = file.split('.')
const extension = fileParts.pop()
let format = fileParts[fileParts.length - 1]
// NOTE: Sadly we can't just use the file extensions as tsc won't compile things correctly
if (['cjs', 'es', 'iife'].includes(format)) {
fileParts.pop()
} else {
format = 'iife'
}
const fileName = fileParts.join('.')
console.log(`Building ${fileName} in ${format} format`)
return {
input: `src/entrypoints/${file}`,
output: [
{
file: `dist/${fileName}.js`,
sourcemap: true,
format,
...(format === 'iife'
? {
name: 'posthog',
globals: {
preact: 'preact',
},
}
: {}),
...(format === 'cjs' ? { exports: 'auto' } : {}),
},
],
plugins: [...plugins],
}
})
export default [
...entrypoints,
{
input: './lib/src/entrypoints/module.es.d.ts',
output: [{ file: pkg.types, format: 'es' }],
plugins: [
dts({
respectExternal: true,
}),
],
},
]