This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
77 lines (69 loc) · 1.51 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"root": {
"src": "./../../src",
"dev": "./../../dist",
"dest": "./../../public",
"dist": "./../../build",
"loaders": "./../../loaders"
},
"loaders": {
"imports": "imports"
},
"options": {
"cleanFirst": false,
"reportSizes": false
},
"tasks": {
"browserSync": {
"server": {
"baseDir": "./../../dist"
}
},
"js": {
"src": "javascripts",
"dest": "javascripts",
"entries": {
"app": ["./app.js"],
"styleguide": ["./styleguide.js"],
"inject": ["./inject.js"]
},
"extensions": ["js"],
"extractSharedJs": false,
"hotModuleReplacement": true,
"deployUncompressed": true
},
"css": {
"src": "stylesheets",
"dest": "stylesheets",
"autoprefixer": {
"browsers": ["last 3 version"]
},
"sass": {
"indentedSyntax": false
},
"extensions": "scss",
"excludeFolders": ["styleguide", "inject", "app"],
"deployUncompressed": true
},
"pug": {
"src": "pug",
"dest": "./",
"data": [
"app/data/global.json",
"styleguide/data/global.json"
],
"extensions": ["pug", "json"],
"excludeFolders": ["atomic", "helper", "data"]
},
"images": {
"src": "images",
"dest": "images",
"extensions": ["jpg", "png", "svg", "gif"]
},
"fonts": {
"src": "fonts",
"dest": "fonts",
"extensions": ["woff2", "woff", "eot", "ttf", "svg"]
}
}
}