-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
41 lines (35 loc) · 1.15 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
/**
* Created by ovb5 on 30.09.2014.
*/
var lr = require('tiny-lr')
gulp = require('gulp'),
jade = require('gulp-jade'),
server = lr();
gulp.task('jade', function() {
gulp.src(['./src/templates/*.jade'])
.pipe(jade({ pretty: true }))
.on('error', console.log) // Если есть ошибки, выводим и продолжаем
.pipe(gulp.dest('./dist/templates')) // Записываем собранные файлы
});
// Собираем JS
gulp.task('js', function() {
gulp.src(['./src/javascript/**/*.js'])
.pipe(gulp.dest('./dist/javascript'))
});
gulp.task('build', function() {
gulp.run('jade');
gulp.run('js');
});
gulp.task('watch', function(){
gulp.run('jade');
gulp.run('js');
server.listen(35729, function(err) {
if (err) return console.log(err);
gulp.watch('src/templates/**/*.jade', function() {
gulp.run('jade');
});
gulp.watch('src/javascript/**/*', function() {
gulp.run('js');
});
});
})