-
Notifications
You must be signed in to change notification settings - Fork 11
/
rollup-aframe.config.js
66 lines (64 loc) · 1.23 KB
/
rollup-aframe.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
import replace from '@rollup/plugin-replace';
import pkg from "./package.json";
import resolve from "@rollup/plugin-node-resolve";
import { terser } from "rollup-plugin-terser";
import strip from '@rollup/plugin-strip';
export default [
{
input: "src/handy-controls.js",
output: {
format: "iife",
sourcemap: true,
file: 'build/handy-controls.js',
},
plugins: [
strip({labels: ['documentation']}),
resolve(),
replace({
preventAssignment: true,
'__version__': function () {
return JSON.stringify(pkg.version)
}
})
]
},
{
input: "src/handy-controls.js",
output: {
format: "iife",
sourcemap: true,
file: 'build/handy-controls.min.js',
},
plugins: [
strip({labels: ['documentation']}),
resolve(),
replace({
preventAssignment: true,
'__version__': function () {
return JSON.stringify(pkg.version)
}
}),
terser()
]
},
{
input: "src/magnet-helpers.js",
output: {
format: "iife",
sourcemap: true,
file: 'build/magnet-helpers.js',
}
},
{
input: "src/magnet-helpers.js",
output: {
format: "iife",
sourcemap: true,
file: 'build/magnet-helpers.min.js',
},
plugins: [
strip({labels: ['documentation']}),
terser()
]
},
];