-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
gulpfile-config.json
executable file
·83 lines (83 loc) · 2.21 KB
/
gulpfile-config.json
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
{
"targets": {
"browser": {
"compile": [
{
"input": "src/app/app.scss",
"output": "resources/css/app.css",
"minify": true
},
{
"input": "src/docs/docs.scss",
"output": "docs/css/docs.css",
"minify": true
}
],
"bundle": [
{
"input": [
"node_modules/stats.js/build/stats.min.js",
"node_modules/dat.gui/build/dat.gui.min.js",
"node_modules/glsl-canvas-js/dist/umd/glsl-canvas.min.js",
"node_modules/ccapture.js/src/CCapture.js",
"node_modules/ccapture.js/src/webm-writer-0.2.0.js"
],
"output": "resources/js/vendors.js",
"minify": true
},
{
"input": [
"node_modules/dat.gui/build/dat.gui.css"
],
"output": "resources/css/vendors.css",
"minify": true
},
{
"input": [
"src/app/services/vector/vector.js",
"src/app/services/camera/camera.service.js",
"src/app/services/capture/capture.service.js",
"src/app/services/capture/ccapture.service.js",
"src/app/services/gui/gui.service.js",
"src/app/services/trails/trails.service.js",
"src/app/app.js"
],
"output": "resources/js/app.js",
"minify": true
},
{
"input": [
"node_modules/glslEditor/build/glslEditor.css"
],
"output": "docs/css/vendors.css",
"minify": true
},
{
"input": [
"node_modules/glslEditor/build/glslEditor.js"
],
"output": "docs/js/vendors.js",
"minify": true
},
{
"input": [
"src/app/services/vector/vector.js",
"src/app/services/camera/camera.service.js",
"src/app/services/trails/trails.service.js",
"src/docs/docs.js"
],
"output": "docs/js/docs.js",
"minify": true
}
]
}
},
"server": {
"src": "./docs",
"path": "/",
"host": "localhost",
"port": 5555,
"log": false
},
"tfs": false
}