-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproject.json
85 lines (85 loc) · 1.55 KB
/
project.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
84
85
{
"index": {
"source": {
"file": "src/webapp/index.html"
}
},
"scripts": {
"webapp": {
"source": {
"root": "src/webapp/scripts/",
"index": "src/webapp/scripts/index.js",
"indexTemplate": "src/webapp/scripts/index-template.js"
},
"dist": {
"filename": {
"prod": "[name]-[contenthash].js",
"dev": "[name].js"
}
}
},
"cli": {
"source": {
"root": "src/cli/"
}
}
},
"styles": {
"source": {
"root": "src/webapp/styles/"
},
"dist": {
"filename": {
"prod": "[name]-[contenthash].css",
"dev": "[name].css"
}
}
},
"images": {
"source": {
"root": "src/webapp/images/",
"files": "src/webapp/images/**/*.*"
},
"dist": {
"root": "images/[name][ext]"
}
},
"favicon": {
"source": {
"file": "src/webapp/images/favicon-pitsby.png"
}
},
"data": {
"source": {
"root": "src/webapp/data/",
"files": "src/webapp/data/**/*.*"
},
"dist": {
"root": "data/[name][ext]"
}
},
"external": {
"source": {
"root": "src/webapp/external/",
"files": "src/webapp/external/**/*.*"
},
"dist": {
"root": "external/"
}
},
"tests": {
"source": {
"files": [
"src/cli/**/*.js",
"!src/cli/**/mocks/**/*.js",
"src/webapp/scripts/**/*.js",
"!src/webapp/scripts/index.js"
]
}
},
"mocks": {
"source": {
"root": "src/webapp/mocks/"
}
}
}