This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
62 lines (62 loc) · 2.11 KB
/
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
{
"gulpSettings": {
"skipLocalInstall": true,
"_comments": "Override for running Gulp locally rather than globally. When switching from local to global, make sure to truncate the contents of `./node_modules` otherwise Gulp will error out."
},
"projectSettings": {
"localProjectBaseDir": "gulp-starter",
"remoteProjectBaseDir": "",
"_comments": "remoteProjectBaseDir is available in case sub-directories are used within the remote /public_html"
},
"environmentalSettings": {
"webAccount": "",
"symbolicLink": "",
"_comments": "webAccount should be used for development (use same one specified in .ftppass as user) and symbolicLink should be used for production"
},
"urlSettings": {
"protocol": "http",
"remoteBaseDevUrl": "homepages.abdn.ac.uk",
"remoteBaseProdUrl": "www.abdn.ac.uk",
"sftpHost": "ftpweb.abdn.ac.uk",
"_comments": "https doesn't work with (local) browserSync"
},
"folderSettings": {
"src": "app",
"dist": "public_html",
"images": "images",
"scripts": "scripts",
"styles": "styles",
"bowerComponents": "bower_components",
"_comments": ""
},
"filenameSettings": {
"concatJsFile": "all.min.js",
"_comments": "see 'File Configuration' section in repo README.md for more info"
},
"scriptSettings": {
"concatenation": {
"order": [
"jquery.ui.js",
"custom.js",
"modernizr.js",
"jquery.fancybox.js",
"URI.js",
"jquery.dataTables.js",
"vue.js",
"tether.js"
]
},
"_comments": "Configuration to use when building the scripts - jQuery included first by default"
},
"flagSettings": {
"skipMinify": false,
"skipBeautify": false,
"skipWatch": false,
"skipBowerWatch": false,
"skipImageMin": false,
"skipPageOpen": false,
"production": false,
"verbose": false,
"_comments": "Enables the permanent setting of flags usually passed in with the `gulp` command. skipBeautify and skipBowerWatch have dependant flags."
}
}