-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
90 lines (85 loc) · 2 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import typescript from 'rollup-plugin-typescript2'
import resolve from 'rollup-plugin-node-resolve'
import replace from 'rollup-plugin-replace'
import cleanup from 'rollup-plugin-cleanup'
import { uglify } from 'rollup-plugin-uglify'
const fs = require('fs')
const path = require('path')
const tsConfigForLib = typescript({
clean: true,
exclude: ['*.d.ts', '**/*.d.ts', 'test/*'],
tsconfigOverride: {
compilerOptions: {
declaration: true,
// outDir: './test', // <-- this is fuxking magic, all other dir won't work. (I want .d.ts placed in the same folder with js)
},
},
})
const commonPlugins = [
resolve({
module: true,
jsnext: true,
main: true,
browser: true,
}),
replace({
exclude: 'node_modules/**',
___ENV___: JSON.stringify(process.env.NODE_ENV || 'production'),
}),
cleanup({ extensions: ['ts', 'tsx'] }),
]
const walkSync = function(dir, filelist) {
let files = fs.readdirSync(dir)
filelist = filelist || []
files.forEach(function(file) {
if (fs.statSync(path.join(dir, file)).isDirectory()) {
filelist = walkSync(path.join(dir, file), filelist)
} else {
filelist.push(path.join(dir, file))
}
})
return filelist
}
let files = walkSync('./src')
let es = files
.filter(f => !f.endsWith('.d.ts'))
.map(file => {
return {
input: file,
output: [
{
file:
'./lib/' +
file
.replace('src/', '')
.replace('.ts', '.js')
.replace('.tsx', '.js'),
format: 'es',
},
],
plugins: [tsConfigForLib, ...commonPlugins],
}
})
export default [
{
input: './src/index.ts',
output: [
{
file: './cjs/index.js',
format: 'cjs',
},
],
plugins: [
typescript({
tsconfigOverride: {
compilerOptions: {
declaration: true,
target: 'es5',
},
},
}),
...commonPlugins,
uglify(),
],
},
].concat(es)