-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpconfig.json
44 lines (44 loc) · 1.11 KB
/
gulpconfig.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
{
"tasksDir": "./tasks",
"compileDirs": {
"dist": "./dist",
"publish": "./publish",
"public": "./public"
},
"assetsDir": "",
"data": {
"langDir": "./lang",
"langMainFile": "messages.json",
"glob": "./data/**/*.json",
"replaceBase": "./data/",
"globalFile": "global.json",
"templateVar": "template",
"titleVar": "page_title",
"contentVar": "content"
},
"browserSync": {
"index": "newsletter.html"
},
"images": {
"glob": "./**",
"workingDir": "./src/images",
"outputDir": "/images"
},
"clean": {
"glob": ["./**/*"]
},
"views": {
"workingDir": "./src/views",
"compileGlob": "./*.mustache",
"glob": "./**/*.mustache",
"partialsGlob": "./partials/**/*.mustache",
"replaceBase": "./partials/",
"outputDir": "/views"
},
"sass": {
"glob": "./src/scss/**",
"outputDir": "/css",
"concatFilename": "styles.min.css",
"browsers": ["last 5 versions", "> 2%", "ie 8", "safari 5"]
}
}