-
Notifications
You must be signed in to change notification settings - Fork 0
/
crius.json
47 lines (47 loc) · 977 Bytes
/
crius.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
{
"paths": {
"source": "assets/",
"dist": "dist/"
},
"browserSync": {
"mode": "server",
"watch": ["**/*.{php,html}"],
"devUrl": "localhost/web/root"
},
"resources": {
"scripts": {
"pattern": "*.js",
"directory": "scripts",
"assets": {
"main.js": {
"files": "index.js",
"autoload": "resources/assets/scripts/autoload/*.js"
}
}
},
"styles": {
"pattern": "*.{css,styl,scss,sass,less}",
"directory": "styles",
"assets": {
"main.css": {
"files": "index.styl",
"autoload": "resources/assets/styles/autoload/*.css"
}
}
},
"fonts": {
"pattern": "*.{eot,otf,svg,ttc,ttf,woff,woff2}",
"directory": "fonts",
"assets": {
"./": "**/*"
}
},
"images": {
"pattern": "*.{jpg,png,gif,svg}",
"directory": "images",
"assets": {
"./": "**/*"
}
}
}
}