forked from patriciogonzalezvivo/glslEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
42 lines (41 loc) · 902 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
34
35
36
37
38
39
40
41
42
/*
* @Author: hhxy
* @Date: 2022-04-23 14:01:24
* @LastEditors: hhxy
* @LastEditTime: 2022-04-24 00:37:37
* @Description:
* @Optimization:
*/
// rollup.config.js
import resolve from "@rollup/plugin-node-resolve";
import babel from "@rollup/plugin-babel";
import { terser } from "rollup-plugin-terser";
import { uglify } from "rollup-plugin-uglify";
import { obfuscator } from "rollup-obfuscator";
import commonjs from "rollup-plugin-commonjs";
export default {
input: "./src/js/GlslEditor.js",
output: [
{
file: "./build/glslEditor.es.js",
format:'es',
name: "GlslEditor",
},
{
file: "./build/glslEditor.umd.js",
format:'umd',
name: "GlslEditor",
},
],
plugins: [
commonjs(),
resolve(),
babel({
exclude: "node_modules/**",
babelHelpers: "runtime",
}),
obfuscator(),
uglify(),
terser(),
],
};