-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
87 lines (87 loc) · 2.1 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
78
79
80
81
82
83
84
85
86
87
{
"title": "Les Verts Styleguide",
"version": "0.0.1",
"fractal": {
"helpers": "./styleguide/helpers",
"overides": {
"path": "./styleguide/styleguide-overides",
"src": "./styleguide/styleguide-overides/**/*",
"dest": "./styleguide/dist/static/styleguide",
"serve": "/styleguide/"
},
"src": {
"docs": "./styleguide/src/docs",
"components": "./styleguide/src/components"
},
"dist": "./styleguide/dist",
"build": "./styleguide/dist/build",
"static": "./styleguide/dist/static",
"server": {
"sync": true,
"port": 4000
},
"sync": {
"tunnel": false,
"ghostMode": {
"clicks": false,
"forms": false,
"scroll": false
},
"watchOptions": {
"cwd": "./styleguide/dist",
"ignoreInitial": true
}
}
},
"javascript": {
"src": "./styleguide/src/**/*.js",
"entries": [
"./styleguide/src/index.js"
],
"paths": [
"./styleguide/src/",
"./styleguide/src/components",
"./styleguide/src/js"
],
"dest": "./styleguide/dist/static/js",
"build_name": "app.js"
},
"sass": {
"src": "./styleguide/src/style.scss",
"dest": "./styleguide/dist/static",
"basename": "style"
},
"images": {
"src": "./styleguide/src/img/**/*",
"dest": "./styleguide/dist/static/img"
},
"svgsprite": {
"src": "./styleguide/src/icons/**/*.svg",
"sprite": "icons.svg",
"dest": "./styleguide/dist/static"
},
"fonts": {
"src": "./styleguide/src/fonts/**/*.*",
"dest": "./styleguide/dist/static/fonts"
},
"watch": {
"sass": "./styleguide/src/**/*.scss",
"images": "./styleguide/src/img/**/*",
"svgsprite": "./styleguide/src/icons/**/*",
"fonts": "./styleguide/src/fonts/**/*",
"scripts": "./styleguide/src/**/*.js",
"sg_custom": "./styleguide-assets/**/*"
},
"modernizr": {
"src": "./styleguide/src/**/*.js",
"dest": "./styleguide/dist/static/js",
"crawl": false,
"quiet": true,
"settings": {
"options": [
"setClasses"
],
"tests": []
}
}
}