-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulppath.json
48 lines (48 loc) · 1.04 KB
/
gulppath.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
{
"browserSync": {
"proxy": "localhost/bauminas",
"port": 3000,
"ui": {
"port": 7678
}
},
"tasks": {
"ltco_styles": {
"srcPath": "src/styles/**/*.scss",
"destPath": "public/styles"
},
"ltco_scripts": {
"srcPath": [
"src/scripts/**/*"
],
"destPath": "public/scripts"
},
"ltco_styles_plugins": {
"srcPath": [
"node_modules/modal-video/css/modal-video.min.css"
],
"destPath": "public/styles"
},
"ltco_scripts_plugins": {
"srcPath": [
"node_modules/modal-video/js/jquery-modal-video.min.js"
],
"destPath": "public/scripts"
},
"ltco_images": {
"srcPath": "src/images/**/*",
"destPath": "public/images"
},
"ltco_svgs": {
"srcPath": "src/svgs/**/*.svg",
"destPath": "public/images/svgs"
}
},
"watch": {
"ltco_styles": "src/styles/**",
"ltco_scripts": "src/scripts/**",
"ltco_images": "src/images/**",
"ltco_svgs": "src/svgs/**",
"ltco_all": "**/*.php"
}
}