forked from ThibaultJanBeyer/DragSelect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
54 lines (53 loc) · 1.17 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
import babel from '@rollup/plugin-babel'
import resolve from '@rollup/plugin-node-resolve'
import { terser } from "rollup-plugin-terser"
import fs from 'fs'
import path from 'path'
export default {
input: 'src/DragSelect.js',
output: [
{
file: 'dist/DragSelect.es6m.js',
format: 'es',
name: 'DragSelect',
},
{
file: 'dist/DragSelect.js',
format: 'umd',
name: 'DragSelect',
},
{
file: 'dist/ds.es6m.min.js',
format: 'es',
name: 'DragSelect',
compact: true,
plugins: [terser()]
},
{
file: 'dist/ds.min.js',
format: 'umd',
name: 'DragSelect',
compact: true,
plugins: [terser()]
}
],
plugins: [
resolve(),
babel({ babelHelpers: 'bundled' }),
{
name: 'copy',
writeBundle(options) {
fs.copyFileSync(options.file, `docs/${path.basename(options.file)}`);
console.log(options.file, `docs/${path.basename(options.file)}`)
}
},
{
name: "disable-treeshaking",
transform(code, id) {
if (id.endsWith('types.js')) {
return {moduleSideEffects: 'no-treeshake'};
}
}
}
],
};