-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
183 lines (158 loc) · 4.73 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
var gulp = require('gulp'),
wiredep = require('wiredep').stream,
php = require('gulp-connect-php'),
browserSync = require('browser-sync').create(),
reload = browserSync.reload,
sass = require('gulp-sass'),
useref = require('gulp-useref'),
uglify = require('gulp-uglify'),
clean = require('gulp-clean'),
gulpif = require('gulp-if'),
filter = require('gulp-filter'),
size = require('gulp-size'),
imagemin = require('gulp-imagemin'),
minifyCss = require('gulp-minify-css'),
gutil = require('gulp-util');
// Задача по умолчанию
gulp.task('default', ['server', 'watch']);
// Запуск сервера
gulp.task('server', ['php', 'sass', 'bower'], function () {
browserSync.init({
proxy: '127.0.0.1:8010',
port: 3000,
open: true,
notify: false,
});
});
// PHP
gulp.task('php', function() {
php.server({
base: 'app',
port: 8010,
keepalive: true
});
});
// ==================== Локальная разработка проекта в app ====================
// Подключаем ссылки на bower components
gulp.task('bower', function () {
gulp.src('app/index.php')
.pipe(wiredep({
directory: 'app/bower'
}))
.pipe(gulp.dest('app'));
});
// Работа с scss
gulp.task('sass', function () {
gulp.src('app/scss/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('app/css'));
});
// Работа с css
gulp.task('css', function () {
gulp.src('app/css/*.css')
.pipe(browserSync.stream());
});
// Работа с js
gulp.task('js', function () {
gulp.src('app/js/*.js')
.pipe(browserSync.stream());
});
// Слежка
gulp.task('watch', function () {
gulp.watch('bower.json', ['bower']);
gulp.watch(['app/*.php'], reload);
gulp.watch(['app/scss/*.scss'], ['sass']);
gulp.watch(['app/index.php']).on('change', reload);
gulp.watch(['app/css/*.css'], ['css']);
gulp.watch(['app/js/*.js'], ['js']);
});
// ==================== Сборка проекта ===================
// Предварительная очистка папки dist
gulp.task('clean', function () {
return gulp.src('dist')
.pipe(clean());
});
// Перенос файлов в dist
gulp.task('useref', function () {
var assets = useref.assets();
return gulp.src('app/index.php')
.pipe(assets)
.pipe(gulpif('*.js', uglify()))
.pipe(gulpif('*.css', minifyCss({compatibility: 'ie8'})))
.pipe(assets.restore())
.pipe(useref())
.pipe(gulp.dest('dist'));
});
// Перенос шрифтов
gulp.task('fonts', function () {
return gulp.src('app/fonts/*')
.pipe(filter(['*.eot', '*.svg', '*.ttf', '*.woff', '*.woff2']))
.pipe(gulp.dest('dist/fonts/'));
});
// Перенос и оптимизация картинок
gulp.task('images', function () {
return gulp.src('app/img/**/*')
.pipe(imagemin({
progressive: true,
interlaced: true
}))
.pipe(gulp.dest('dist/img'));
});
// php файлы
gulp.task('php-files', function () {
gulp.src([
'app/languages/**/*'
]).pipe(gulp.dest('dist/languages'));
gulp.src([
'app/vendor/**/*'
]).pipe(gulp.dest('dist/vendor'));
gulp.src([
'app/classes/**/*'
]).pipe(gulp.dest('dist/classes'));
});
// Остальные файлы, такие как favicon.ico и пр.
gulp.task('extras', function () {
return gulp.src([
'app/*.*',
'!app/index.php'
]).pipe(gulp.dest('dist'));
});
// Сборка и вывод размера содержимого папки dist
gulp.task('dist', ['useref', 'images', 'fonts', 'php-files', 'extras'], function () {
return gulp.src('dist/**/*')
.pipe(size({title: 'build'}));
});
// Собираем папку DIST
gulp.task('build', ['clean'], function () {
gulp.start('dist');
});
// PHP
gulp.task('php-dist', function() {
php.server({
base: 'dist',
port: 8020,
keepalive: true
});
});
// Запуск сервера для проверки сборки
gulp.task('server-dist', ['php-dist'], function () {
browserSync.init({
proxy: '127.0.0.1:8020',
port: 9000,
open: true,
notify: false,
});
});
// ==================== Функции ====================
// Более наглядный вывод ошибок
var log = function (error) {
console.log([
'',
'----------ERROR MESSAGE START----------',
('[' + error.name + ' in ' + error.plugin + ']'),
error.message,
'----------ERROR MESSAGE END----------',
''
].join('\n'));
this.end();
};