-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathrollup.config.js
53 lines (52 loc) · 1.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
import generatePackageJson from 'rollup-plugin-generate-package-json';
export default [
{
input: 'src/full.js',
output: [
{
file: 'dist/umd/full.js',
format: 'umd',
name: 'OpenCC',
plugins: [
generatePackageJson({
baseContents: {
type: "commonjs"
}
})
]
},
{
file: 'dist/esm/full.js',
format: 'es',
}
]
},
{
input: 'src/cn2t.js',
output: [
{
file: 'dist/umd/cn2t.js',
format: 'umd',
name: 'OpenCC'
},
{
file: 'dist/esm/cn2t.js',
format: 'es',
}
]
},
{
input: 'src/t2cn.js',
output: [
{
file: 'dist/umd/t2cn.js',
format: 'umd',
name: 'OpenCC'
},
{
file: 'dist/esm/t2cn.js',
format: 'es',
}
]
}
];