forked from ajv-validator/ajv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
33 lines (31 loc) · 935 Bytes
/
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
import commonjs from "@rollup/plugin-commonjs"
import {nodeResolve} from "@rollup/plugin-node-resolve"
import json from "@rollup/plugin-json"
import typescript from "@rollup/plugin-typescript"
import {terser} from "rollup-plugin-terser"
function createBundleConfig(sourceFile, outFile, globalName) {
return {
input: `./lib/${sourceFile}.ts`,
output: [
{
file: `./bundle/${outFile}.bundle.js`,
format: "umd",
name: globalName,
},
{
file: `./bundle/${outFile}.min.js`,
format: "umd",
name: globalName,
sourcemap: true,
plugins: [terser()],
},
],
plugins: [commonjs(), nodeResolve(), json(), typescript()],
}
}
export default [
createBundleConfig("ajv", "ajv7", "ajv7"),
createBundleConfig("2019", "ajv2019", "ajv2019"),
createBundleConfig("2020", "ajv2020", "ajv2020"),
createBundleConfig("jtd", "ajvJTD", "ajvJTD"),
]