-
Notifications
You must be signed in to change notification settings - Fork 405
/
rollup.config.mjs
61 lines (55 loc) · 1.32 KB
/
rollup.config.mjs
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
import babel from '@rollup/plugin-babel'
import copy from 'rollup-plugin-copy'
import resolve from '@rollup/plugin-node-resolve'
import { createRequire } from 'node:module'
const require = createRequire(import.meta.url)
const pkg = require('./package.json')
const year = new Date().getFullYear()
const banner = `/*!
* Client Side Validations JS - v${pkg.version} (https://github.com/DavyJonesLocker/client_side_validations)
* Copyright (c) ${year} Geremia Taglialatela, Brian Cardarella
* Licensed under MIT (https://opensource.org/licenses/mit-license.php)
*/
`
export default [
{
input: 'src/index.js',
external: ['jquery'],
output: [
{
file: pkg.main,
banner,
format: 'umd',
name: 'ClientSideValidations',
globals: {
jquery: 'jQuery'
}
}
],
plugins: [
resolve(),
babel({ babelHelpers: 'bundled' }),
copy({
targets: [
{ src: pkg.main, dest: 'vendor/assets/javascripts/', rename: 'rails.validations.js' }
],
hook: 'writeBundle',
verbose: true
})
]
},
{
input: 'src/index.js',
external: ['jquery'],
output: [
{
file: pkg.module,
banner,
format: 'es'
}
],
plugins: [
babel({ babelHelpers: 'bundled' })
]
}
]