-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpcfg.json
81 lines (72 loc) · 1.62 KB
/
gulpcfg.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
{
"CLEAN_TASK": "clean",
"CLEAN_SRC": [
"dist/**/*",
"docs/**/*",
"!dist/.gitkeep",
"!docs/.gitkeep"
],
"JS_TASK": "js",
"JS_SRC": "src/js/index-template.js",
"JS_DEST": "docs/js/",
"JS_ANY_SRC": "src/js/**/*.js",
"JS_BUNDLE_OPTIONS": {
"output": {
"filename": "index-template.js"
}
},
"CSS_TASK": "css",
"CSS_SRC": "src/less/docs.less",
"CSS_DEST": "docs/css/",
"CSS_ANY_SRC": "src/less/**/*.less",
"CSS_AUTOPREFIX_OPTIONS": {
"browsers": [
"last 2 versions"
]
},
"HTML_TASK": "html",
"HTML_SRC": "src/index.html",
"HTML_DEST": "docs/",
"HTML_ANY_SRC": "src/**/*.html",
"HTML_INCLUDE_OPTIONS": {},
"HTML_MIN_OPTIONS": {
"caseSensitive": true,
"collapseBooleanAttributes": true,
"collapseWhitespace": true,
"conservativeCollapse": true,
"html5": true,
"includeAutoGeneratedTags": true,
"preventAttributesEscaping": true,
"removeAttributeQuotes": true,
"removeComments": true,
"removeEmptyAttributes": true,
"removeScriptTypeAttributes": true,
"removeStyleLinkTypeAttributes": true,
"useShortDoctype": true
},
"IMG_TASK": "img",
"IMG_SRC": "src/img/**/*",
"IMG_DEST": "docs/img/",
"DIST_TASK": "dist",
"DIST_SRC": [
"docs/js/index-template.js"
],
"DIST_DEST": "dist/",
"MISC_TASK": "misc",
"MISC_SRC": [
"src/robots.txt",
"src/favicon.*",
"src/CNAME"
],
"MISC_DEST": "docs/",
"TEST_TASK": "test",
"TEST_SRC": "test/**/*-spec.js",
"TEST_SPEC_OPTIONS": {
"console": true
},
"BUILD_TASK": "build",
"DEV_TASK": "dev",
"DEV_OPTIONS": {
"server": "docs/"
}
}