-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.json
More file actions
50 lines (50 loc) · 1021 Bytes
/
gulpfile.json
File metadata and controls
50 lines (50 loc) · 1021 Bytes
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
{
"less": [
"./dev/less/reset.less",
"./dev/less/default.less"
],
"lib": {
"css": [
"./node_modules/materialize-css/dist/css/materialize.min.css",
"./node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2",
"./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
],
"js": [
"./node_modules/jquery/dist/jquery.min.js",
"./node_modules/materialize-css/dist/js/materialize.min.js",
"./node_modules/@fortawesome/fontawesome-free/js/all.min.js"
]
},
"js": [
"./dev/js/calc/application.js",
"./dev/js/default.js"
],
"watch": {
"less": [
"./dev/less/**/*.less"
],
"js": [
"./dev/js/**/*.js"
],
"html": [
"./*.html"
]
},
"path": {
"css": [
"./pub/css/"
],
"js": [
"./pub/js/"
]
},
"server": {
"url": "localhost:8088",
"port": "8090",
"server_file": "server.js",
"ignore": [
"gulpfile.js",
"node_modules/"
]
}
}