-
Notifications
You must be signed in to change notification settings - Fork 23
/
rollup.config.js
97 lines (91 loc) · 2.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import resolve from '@rollup/plugin-node-resolve';
import glsl from 'rollup-plugin-glsl';
import terser from '@rollup/plugin-terser';
import json from '@rollup/plugin-json';
import babel from '@rollup/plugin-babel';
import { version } from './package.json';
const banner = `/**
* GammaCV v${version}
* @license MIT
* @author Arkadiy Pilguk([email protected])
* @author Mihail Zachepilo([email protected])
* Copyright 2018-2023 Peculiar Ventures.
* All rights reserved.
*/
`;
const FORMATS = {
UMD: 'umd', // Universal Module Definition, works as amd, cjs and iife all in one
ES: 'es', // Keep the bundle as an ES module file
};
const terserOptions = {
output: {
comments: new RegExp(`GammaCV v${version}`),
},
};
const assignUMDNameShortcut = `(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory(global));
}(this, function(global) {
global.gm = global.GammaCV;
}))`;
function getConfig(
entry,
plugins = [],
outputFolder = 'dist',
outputName,
format = 'umd',
) {
return {
input: `lib/${entry}`,
plugins: [
resolve({
mainFields: ['jsnext', 'main'],
}),
json(),
glsl({
include: 'lib/**/*.glsl',
}),
...plugins,
],
output: [
{
file: `${outputFolder}/${outputName}.js`,
format,
name: 'GammaCV',
banner,
footer: format === 'umd' ? assignUMDNameShortcut : '',
},
],
};
}
export default [
getConfig(
'index.js',
[babel({ babelHelpers: 'bundled' })],
'dist',
'index',
FORMATS.UMD,
),
getConfig(
'index.js',
[babel({ babelHelpers: 'bundled' }), terser(terserOptions)],
'dist',
'index.min',
FORMATS.UMD,
),
getConfig(
'index.js',
[],
'dist',
'index.es',
FORMATS.ES,
),
getConfig(
'index.js',
[terser(terserOptions)],
'dist',
'index.es.min',
FORMATS.ES,
),
];