-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpconfig.json
executable file
·71 lines (71 loc) · 2.57 KB
/
gulpconfig.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
{
"source": {
"styleIncludePaths": [
"bower_components/bootstrap-sass/assets/stylesheets/",
"bower_components/components-font-awesome/scss/"
],
"vendorStyles": [
"bower_components/swiper/dist/css/swiper.css",
"bower_components/swipebox/scss/swipebox.scss"
],
"vendorScripts": [
"bower_components/jquery/dist/jquery.js",
"bower_components/bootstrap-sass/assets/javascripts/bootstrap.js",
"bower_components/swiper/dist/js/swiper.jquery.js",
"bower_components/swipebox/src/js/jquery.swipebox.js",
"bower_components/obisconcept-neos-ajax-form/Resources/Private/Assets/JavaScript/main.js",
"bower_components/obisconcept-neos-ajax-form/Resources/Private/Assets/JavaScript/backend.js",
"bower_components/obisconcept-neos-gallery/Resources/Private/Assets/JavaScript/main.js",
"bower_components/obisconcept-neos-gmaps/Resources/Private/Assets/JavaScript/main.js",
"bower_components/obisconcept-neos-gmaps/Resources/Private/Assets/JavaScript/backend.js",
"bower_components/obisconcept-neos-search/Resources/Private/Assets/JavaScript/main.js",
"bower_components/obisconcept-neos-swiper/Resources/Private/Assets/JavaScript/main.js"
],
"vendorImageFolders": [
"bower_components/bootstrap-sass/assets/images/",
"bower_components/swipebox/src/img"
],
"vendorFontFolders": [
"bower_components/bootstrap-sass/assets/fonts/",
"bower_components/components-font-awesome/fonts/"
],
"styles": [
"Resources/Private/Fusion/Variables.scss",
"Resources/Private/Fusion/Mixins.scss",
"Resources/Private/Fusion/Vendors.scss",
"Resources/Private/Fusion/Components/**/*.scss",
"Resources/Private/Fusion/NodeTypes/**/*.scss"
],
"scripts": [
"Resources/Private/Fusion/Components/**/*.js",
"Resources/Private/Fusion/NodeTypes/**/*.js"
],
"imageFolder": "Resources/Private/Assets/Images/",
"fontFolder": "Resources/Private/Assets/Fonts/"
},
"dest": {
"styles": "Resources/Public/Styles",
"scripts": "Resources/Public/JavaScript",
"images": "Resources/Public/Images",
"fonts": "Resources/Public/Fonts"
},
"browsersyncWatch": [
"Configuration/**/*.*",
"Resources/**/*.*",
"!Resources/**/*.scss",
"!Resources/**/*.css",
"!Resources/Private/**/*.js"
],
"backendBreakpoints": {
"half": {
"screen-sm": "1089px",
"screen-md": "1313px",
"screen-lg": "1521px"
},
"full": {
"screen-sm": "1410px",
"screen-md": "1634px",
"screen-lg": "1842px"
}
}
}