-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpacker.json
50 lines (50 loc) · 1.14 KB
/
packer.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
{
"input": [
{
"input": "src",
"output": "/static",
"filter": "\\.(js|html|css|json)$",
"recursive": true
},
{
"input": "src",
"output": "/",
"filter": "\\.(glsl|wgsl)$",
"recursive": true,
"parse": true
},
{
"input": "src/images",
"output": "/static/images",
"recursive": true
}
],
"transform": [],
"output": [
{
"input": "/static",
"output": "build",
"mode": "each"
},
{
"input": "/glsl/shaders",
"output": "build/shaders.json",
"mode": "json"
},
{
"input": "/wgsl/shaders",
"output": "build/shaders-wgsl.json",
"mode": "json"
},
{
"input": "/glsl/mixins",
"output": "build/mixins.json",
"mode": "json"
},
{
"input": "/wgsl/mixins",
"output": "build/mixins-wgsl.json",
"mode": "json"
}
]
}