-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.yml
21 lines (18 loc) · 915 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
#minify source files?
"minify": false,
# compile all local source files into a large file
# Note: according to html5 rocks the optimal script size (for caching) is <125 kB
# I've set up the build scripts with this in mind so `concat` may not be recommended
# see https://hacks.mozilla.org/2012/12/fantastic-front-end-performance-part-1-concatenate-compress-cache-a-node-js-holiday-season-part-4/
"concat": false,
# Load resources off of a top-tier CDN where possible - otherwise going to build a modules.js file
# see http://www.sitepoint.com/7-reasons-to-use-a-cdn/
"use cdn": true,
#give stats on build (gzip size) - significantly slows down the build
"report": false,
# Does your server support Atheme RPC services (currently only using channel lists)
"atheme": false,
# In debug mode? console debug statements may be outputted
"debug": true
}