forked from ArtGarm/consulting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
executable file
·205 lines (177 loc) · 6.14 KB
/
gulpfile.js
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
'use strict';
var gulp = require('gulp'),
watch = require('gulp-watch'),
sass = require('gulp-sass'),
concat = require('gulp-concat'),
clean = require('gulp-clean'),
cache = require('gulp-cached'),
htmlreplace = require('gulp-html-replace'),
autoprefixer = require('gulp-autoprefixer'),
uglify = require('gulp-uglify'),
rigger = require('gulp-rigger'),
browserSync = require("browser-sync"),
reload = browserSync.reload;
var path = {
build: { //Тут мы укажем куда складывать готовые после сборки файлы
html: 'build/',
js: 'build/js/',
css: 'build/css/',
img: 'build/images/',
fonts: 'build/fonts/',
php:'build/'
},
src: { //Пути откуда брать исходники
html: 'src/*.html', //Синтаксис src/*.html говорит gulp что мы хотим взять все файлы с расширением .html
js: 'src/js/*.js',//В стилях и скриптах нам понадобятся только main файлы
style: 'src/sass/**/*.scss',
img: 'src/images/**/*.*', //Синтаксис img/**/*.* означает - взять все файлы всех расширений из папки и из вложенных каталогов
fonts: 'src/fonts/**/*.*',
php:'src/*.php'
},
watch: { //Тут мы укажем, за изменением каких файлов мы хотим наблюдать
html: 'src/**/*.html',
js: 'src/js/**/*.js',
style: 'src/sass/**/*.scss',
img: 'src/images/**/*.*',
fonts: 'src/fonts/**/*.*',
php:'src/*.php'
},
clean: './build'
};
var config = {
server: {
baseDir: "./build"
},
tunnel: false,
host: 'localhost',
port: 3333,
logPrefix: "we can play"
};
gulp.task('clear:prod', function () {
return gulp.src(['./build/js/main.js', './build/css/style.css'], {read: false})
.pipe(clean());
});
gulp.task('html:build', function () {
gulp.src(path.src.html) //Выберем файлы по нужному пути
.pipe(rigger()) //Прогоним через rigger
.pipe(gulp.dest(path.build.html)) //Выплюнем их в папку build
.pipe(reload({stream: true})); //И перезагрузим наш сервер для обновлений
});
gulp.task('js:build', function () {
gulp.src('src/js/**/*.js') //Найдем наш main файл
//.pipe(rigger()) //Прогоним через rigger
.pipe(gulp.dest(path.build.js)) //Выплюнем готовый файл в build
.pipe(reload({stream: true})); //И перезагрузим сервер
});
gulp.task('style:build', function () {
return gulp.src(path.src.style)
.pipe(cache())
.pipe(sass.sync().on('error', sass.logError))
.pipe(autoprefixer({
browsers: ['> 0%'],
cascade: false
}))
.pipe(gulp.dest(path.build.css))
.pipe(reload({stream: true}));
});
gulp.task('image:build', function () {
gulp.src(path.src.img) //Выберем наши картинки
.pipe(gulp.dest(path.build.img)) //И бросим в build
.pipe(reload({stream: true}));
});
gulp.task('fonts:build', function() {
gulp.src(path.src.fonts)
.pipe(gulp.dest(path.build.fonts));
});
gulp.task('php:build',function(){
gulp.src(path.src.php)
.pipe(gulp.dest(path.build.php));
});
gulp.task('build', [
'clear:prod',
'html:build',
'js:build',
'style:build',
'fonts:build',
'image:build',
'php:build'
]);
gulp.task('watch', function(){
watch([path.watch.html], function(event, cb) {
gulp.start('html:build');
});
watch([path.watch.style], function(event, cb) {
gulp.start('style:build');
});
watch([path.watch.js], function(event, cb) {
gulp.start('js:build');
});
watch([path.watch.img], function(event, cb) {
gulp.start('image:build');
});
watch([path.watch.fonts], function(event, cb) {
gulp.start('fonts:build');
});
watch([path.watch.php], function(event, cb) {
gulp.start('php:build');
});
});
gulp.task('webserver', function () {
browserSync(config);
});
gulp.task('clean_css', function () {
return gulp.src(['./build/css/'], {read: false})
.pipe(clean());
});
gulp.task('prod_css',['clean_css'],function() {
return gulp.src(path.src.style)
.pipe(cache())
.pipe(sass.sync().on('error', sass.logError))
.pipe(autoprefixer({
browsers: ['> 0%'],
cascade: false
}))
.pipe(concat('style.css'))
.pipe(gulp.dest(path.build.css));
});
gulp.task('clean_js',['prod_js'], function () {
return gulp.src(['./build/js/plagins/', './build/js/basic_scripts.js', './build/js/develop/'], {read: false})
.pipe(clean());
});
gulp.task('prod_js', function() {
return gulp.src(['./build/js/plagins/*.js', './build/js/basic_scripts.js', './build/js/develop/*.js'])
.pipe(concat('main.js'))
.pipe(gulp.dest(path.build.js));
});
gulp.task('prod_html', function() {
gulp.src('./build/*.html')
.pipe(htmlreplace({
'css': 'css/style.css',
'js': 'js/main.js'
}))
.pipe(gulp.dest(path.build.html))
.pipe(reload({stream: true}));
});
// minify functions
gulp.task('css_min', function() {
return gulp.src(path.src.style)
.pipe(cache())
.pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError))
.pipe(autoprefixer({
browsers: ['> 0%'],
cascade: false
}))
.pipe(concat('style.css'))
.pipe(gulp.dest(path.build.css))
.pipe(reload({stream: true}));
});
gulp.task('js_min', function(){
gulp.src('./build/js/main.js')
.pipe(uglify())
.pipe(gulp.dest(path.build.js))
.pipe(reload({stream: true}));
});
// /minify functions
gulp.task('default', ['build', 'webserver', 'watch']);
gulp.task('minify', ['css_min', 'js_min']);
gulp.task('prod', [ 'clean_css','prod_css', 'prod_js', 'clean_js', 'prod_html', 'webserver']);