-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
73 lines (61 loc) · 1.67 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
import path from 'path'
import ts from 'rollup-plugin-typescript2'
import { terser } from 'rollup-plugin-terser'
const resolve = p => path.resolve(__dirname, p)
const packageOptions = require(resolve('package.json'))
const name = 'Watermark'
const isProd = process.env.NODE_ENV === 'production'
const configs = {
esm: {
file: resolve(`dist/${name}.esm-bundler${isProd ? '.prod' : ''}.js`),
format: `es`
},
cjs: {
file: resolve(`dist/${name}.cjs${isProd ? '.prod' : ''}.js`),
format: `cjs`
},
global: {
file: resolve(`dist/${name}.global${isProd ? '.prod' : ''}.js`),
format: `iife`
},
'esm-browser': {
file: resolve(`dist/${name}.esm-browser${isProd ? '.prod' : ''}.js`),
format: `es`
}
}
const defaultFormats = ['esm', 'cjs', 'global']
const inlineFormats = process.env.FORMATS && process.env.FORMATS.split(',')
const packageFormats = inlineFormats || packageOptions.formats || defaultFormats
const outputOptions = packageFormats.map(format => ({
name,
...configs[format],
globals: {
'resize-observer-polyfill': 'ResizeObserver'
}
}))
const rollupConfig = createConfig(outputOptions)
export default rollupConfig
function createConfig(output) {
const tsPlugin = ts({
check: isProd,
tsconfig: resolve('tsconfig.json'),
cacheRoot: resolve('node_modules/.rts2_cache'),
tsconfigOverride: {
compilerOptions: {
declaration: isProd
},
exclude: ['**/__tests__']
}
})
const terserPlugin = terser()
const plugins = [tsPlugin]
if (isProd) {
plugins.push(terserPlugin)
}
return {
input: 'src/index.ts',
output,
external: ['resize-observer-polyfill'],
plugins
}
}