-
Notifications
You must be signed in to change notification settings - Fork 9
/
gulpfile.js
129 lines (103 loc) · 4.42 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
// Инициализируем плагины
var lr = require('tiny-lr'), // Минивебсервер для livereload
gulp = require('gulp'), // Сообственно Gulp JS
jade = require('gulp-jade'), // Плагин для Jade
stylus = require('gulp-stylus'), // Плагин для Stylus
livereload = require('gulp-livereload'), // Livereload для Gulp
myth = require('gulp-myth'), // Плагин для Myth - http://www.myth.io/
csso = require('gulp-csso'), // Минификация CSS
imagemin = require('gulp-imagemin'), // Минификация изображений
uglify = require('gulp-uglify'), // Минификация JS
concat = require('gulp-concat'), // Склейка файлов
connect = require('connect'), // Webserver
server = lr();
// Собираем Stylus
gulp.task('stylus', function() {
gulp.src('./assets/stylus/screen.styl')
.pipe(stylus({
use: ['nib']
})) // собираем stylus
.on('error', console.log) // Если есть ошибки, выводим и продолжаем
.pipe(myth()) // добавляем префиксы - http://www.myth.io/
.pipe(gulp.dest('./public/css/')) // записываем css
.pipe(livereload(server)); // даем команду на перезагрузку css
});
// Собираем html из Jade
gulp.task('jade', function() {
gulp.src(['./assets/template/*.jade', '!./assets/template/_*.jade'])
.pipe(jade({
pretty: true
})) // Собираем Jade только в папке ./assets/template/ исключая файлы с _*
.on('error', console.log) // Если есть ошибки, выводим и продолжаем
.pipe(gulp.dest('./public/')) // Записываем собранные файлы
.pipe(livereload(server)); // даем команду на перезагрузку страницы
});
// Собираем JS
gulp.task('js', function() {
gulp.src(['./assets/js/**/*.js', '!./assets/js/vendor/**/*.js'])
.pipe(concat('index.js')) // Собираем все JS, кроме тех которые находятся в ./assets/js/vendor/**
.pipe(gulp.dest('./public/js'))
.pipe(livereload(server)); // даем команду на перезагрузку страницы
});
// Копируем и минимизируем изображения
gulp.task('images', function() {
gulp.src('./assets/img/**/*')
.pipe(imagemin())
.pipe(gulp.dest('./public/img'))
});
// Локальный сервер для разработки
gulp.task('http-server', function() {
connect()
.use(require('connect-livereload')())
.use(connect.static('./public'))
.listen('9000');
console.log('Server listening on http://localhost:9000');
});
// Запуск сервера разработки gulp watch
gulp.task('default', function() {
// Предварительная сборка проекта
gulp.run('stylus');
gulp.run('jade');
gulp.run('images');
gulp.run('js');
// Подключаем Livereload
server.listen(35729, function(err) {
if (err) return console.log(err);
gulp.watch('assets/stylus/**/*.styl', function() {
gulp.run('stylus');
});
gulp.watch('assets/template/**/*.jade', function() {
gulp.run('jade');
});
gulp.watch('assets/img/**/*', function() {
gulp.run('images');
});
gulp.watch('assets/js/**/*', function() {
gulp.run('js');
});
});
gulp.run('http-server');
});
gulp.task('build', function() {
// css
gulp.src('./assets/stylus/screen.styl')
.pipe(stylus({
use: ['nib']
})) // собираем stylus
.pipe(myth()) // добавляем префиксы - http://www.myth.io/
.pipe(csso()) // минимизируем css
.pipe(gulp.dest('./build/css/')) // записываем css
// jade
gulp.src(['./assets/template/*.jade', '!./assets/template/_*.jade'])
.pipe(jade())
.pipe(gulp.dest('./build/'))
// js
gulp.src(['./assets/js/**/*.js', '!./assets/js/vendor/**/*.js'])
.pipe(concat('index.js'))
.pipe(uglify())
.pipe(gulp.dest('./build/js'));
// image
gulp.src('./assets/img/**/*')
.pipe(imagemin())
.pipe(gulp.dest('./build/img'))
});