-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
182 lines (155 loc) · 6.08 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
var gulp = require('../node_modules/gulp'),
gutil = require('../node_modules/gulp-util' ),
sass = require('../node_modules/gulp-sass'),
browserSync = require('../node_modules/browser-sync'),
concat = require('../node_modules/gulp-concat'),
uglify = require('../node_modules/gulp-uglify'),
cleanCSS = require('../node_modules/gulp-clean-css'),
rename = require('../node_modules/gulp-rename'),
del = require('../node_modules/del'),
imagemin = require('../node_modules/gulp-imagemin'),
cache = require('../node_modules/gulp-cache'),
autoprefixer = require('../node_modules/gulp-autoprefixer'),
ftp = require('../node_modules/vinyl-ftp'),
notify = require("../node_modules/gulp-notify");
var validator = require('../node_modules/gulp-html'),
ngrok = require('../node_modules/ngrok'), //сервер для показа заказщику;
responsive = require('../node_modules/gulp-responsive'); //нарезка картинок
gulp.task('valid-html', function() {
return gulp.src('dev/*.html')
.pipe(validator())
.on('error', function () {
status = false;
})
.on('end', function () {
console.log('************************* PAGE IS VALID (∪ ◡ ∪) **************************');
});
});
gulp.task('webserver', function () { //временный сервер для показа заказщику (https://toster.ru/q/323907)
browserSync.init({
server: {
baseDir: "./app"
},
}, function (err, bs) {
ngrok.connect({
proto: 'http', // http|tcp|tls
addr: bs.options.get('port'), // port or network address
}, function (err, url) {
console.log("Admin: 127.0.0.1:4040");
console.log(url, err); //выдаст адрес сайта или ошибки в консоли
});
});
});
gulp.task('miniature-img', function () { //создлает миниатюры изображений
return gulp.src(['app/img/slider-top/**/*.{gif,jpg,jpeg,png}'])
.pipe(responsive({ '**/*': [{//Изменить размер всех изображений
width: 1600,
rename: { suffix: '-1600' }
}, {
width: 1280,
rename: { suffix: '-1280' }
}, {
width: 960,
rename: { suffix: '-960' }
}, {
width: 640,
rename: { suffix: '-640' }
}],
}, {
// Глобальная настройка для всех изображений
quality: 70, // Качество для JPEG, webp и выходной форматы TIFF
progressive: true, //Использование Прогрессивная (чересстрочная развертка) сканирования для форматов JPEG и PNG выпуск
compressionLevel: 6, // Уровень сжатия zlib выходного формате PNG
withMetadata: false, // полосы всех метаданных
skipOnEnlargement: true,
errorOnUnusedConfig: false,
errorOnUnusedImage: false,
errorOnEnlargement: false
}))
.pipe(gulp.dest('app/img/slider-top/min')); //куда сохраняем миниатюры
});
gulp.task('common-js', function() {
return gulp.src([
'app/js/common.js',
])
.pipe(concat('common.min.js'))
.pipe(uglify())
.pipe(gulp.dest('app/js'));
});
gulp.task('js', ['common-js'], function() {
return gulp.src([
'app/libs/jquery/dist/jquery.min.js',
'app/libs/jQuery.mmenu/dist/jquery.mmenu.all.js', //мобильное меню
'app/libs/owl.carousel/dist/owl.carousel.js', //карусель
'app/libs/google-maps-settings/settings-map.js', // google maps мои настройки
'app/js/common.min.js', // Всегда в конце
])
.pipe(concat('scripts.min.js'))
.pipe(gulp.dest('app/js'))
.pipe(uglify()) // Минимизировать весь js (на выбор)
.pipe(gulp.dest('app/js'))
.pipe(browserSync.reload({stream: true}));
});
gulp.task('browser-sync', function() {
browserSync({
server: {
baseDir: 'app'
},
notify: false,
// tunnel: true,
// tunnel: "projectmane", //Demonstration page: http://projectmane.localtunnel.me
});
});
gulp.task('sass', function() {
return gulp.src('app/sass/**/*.sass')
.pipe(sass({outputStyle: 'expand'}).on("error", notify.onError()))
.pipe(autoprefixer(['last 15 versions']))
.pipe(gulp.dest('app/css'))
.pipe(rename({suffix: '.min', prefix : ''}))
.pipe(cleanCSS()) // Опционально, закомментировать при отладке
.pipe(gulp.dest('app/css'))
.pipe(browserSync.reload({stream: true}));
});
gulp.task('watch', ['sass', 'js', 'browser-sync'], function() {
gulp.watch('app/sass/**/*.sass', ['sass']);
gulp.watch(['libs/**/*.js', 'app/js/common.js'], ['js']);
gulp.watch('app/*.html', browserSync.reload);
});
gulp.task('imagemin', function() {
return gulp.src('app/img/**/*')
.pipe(cache(imagemin()))
.pipe(gulp.dest('dist/img'));
});
gulp.task('build', ['removedist', 'imagemin', 'sass', 'js'], function() {
var buildFiles = gulp.src([
'app/*.html',
'app/.htaccess',
]).pipe(gulp.dest('dist'));
var buildCss = gulp.src([
'app/css/main.min.css',
]).pipe(gulp.dest('dist/css'));
var buildJs = gulp.src([
'app/js/scripts.min.js',
]).pipe(gulp.dest('dist/js'));
var buildFonts = gulp.src([
'app/fonts/**/*',
]).pipe(gulp.dest('dist/fonts'));
});
gulp.task('deploy', function() {
var conn = ftp.create({
host: 'hostname.com',
user: 'username',
password: 'userpassword',
parallel: 10,
log: gutil.log
});
var globs = [
'dist/**',
'dist/.htaccess',
];
return gulp.src(globs, {buffer: false})
.pipe(conn.dest('/path/to/folder/on/server'));
});
gulp.task('removedist', function() { return del.sync('dist'); });
gulp.task('clearcache', function () { return cache.clearAll(); });
gulp.task('default', ['watch']);