-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrollup.config.js
42 lines (39 loc) · 1.19 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
import babel from '@rollup/plugin-babel'
import typescript from '@rollup/plugin-typescript'
const path = require('path')
const pkg = require(path.resolve(__dirname, 'package.json'))
const format = process.env.FORMAT ? process.env.FORMAT : 'umd'
const extended = process.env.EXTENDED
const copyleft = `/*!
* Nusantara Valid v${pkg.version}
* Copyright 2020 - ${pkg.author.name} (${pkg.author.url})
* Contributors (https://github.com/agraris/nusantara-valid/graphs/contributors)
* Licensed under MIT (https://github.com/agraris/nusantara-valid/blob/master/LICENSE)
*/`
let inName = "index"
let outName = "nusantara-valid"
if (extended) {
inName = "index.extended"
outName = "nusantara-valid.extended"
}
export default {
input: path.resolve(__dirname, `src/ts/${inName}.ts`),
output: [
{
file: `dist/${format}/${outName}.js`,
format: format,
banner: copyleft,
name: 'NusantaraValid',
sourcemap: true
}
],
plugins: [
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled'
}),
typescript({
typescript: require('typescript')
})
]
}