forked from loktar00/JQuery-Snowfall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
34 lines (29 loc) · 819 Bytes
/
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
var gulp = require('gulp'),
connect = require('gulp-connect'),
rename = require('gulp-rename'),
uglify = require('gulp-uglify');
// start the server for testing
gulp.task('webserver', function() {
connect.server({
root: '.',
livereload: true
});
});
gulp.task('js', function() {
gulp.src('src/*.js')
.pipe(uglify())
.pipe(rename({
suffix: ".min",
extname: ".js"
}))
.pipe(gulp.dest('dist'))
.pipe(connect.reload());
});
// watch task
gulp.task('watch', ['js'], function() {
var jsWatcher = gulp.watch(['./src/**'], ['js']);
jsWatcher.on('change', function (event) {
console.log('File ' + event.path + ' was ' + event.type + ', building js...');
});
});
gulp.task('default', ['webserver', 'watch']);