-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
66 lines (57 loc) · 1.55 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
/**
* Created by Donny on 17/3/15.
*/
var gulp = require('gulp')
var browserSync = require('browser-sync')
var nodemon = require('gulp-nodemon')
// we'd need a slight delay to reload browsers
// connected to browser-sync after restarting nodemon
var BROWSER_SYNC_RELOAD_DELAY = 800
gulp.task('nodemon', function (cb) {
var called = false
return nodemon({
// nodemon our expressjs server
script: 'app.js',
// watch core server file(s) that require server restart on change
watch: ['**/*.js']
})
.on('start', function onStart() {
// ensure start only got called once
if (!called) {
cb()
}
called = true
})
.on('restart', function onRestart() {
// reload connected browsers after a slight delay
setTimeout(function reload() {
browserSync.reload({
stream: false
})
}, BROWSER_SYNC_RELOAD_DELAY)
})
})
gulp.task('browser-sync', ['nodemon'], function () {
browserSync({
proxy: 'http://localhost:3010',
port: 4000
})
})
gulp.task('js', function () {
return gulp.src('public/js/*.js')
// do stuff to JavaScript files
//.pipe(uglify())
//.pipe(gulp.dest('...'));
})
gulp.task('bs-reload', function () {
browserSync.reload()
})
gulp.task('css', function () {
return gulp.src('public/**/*.css')
.pipe(browserSync.reload({stream: true}))
})
gulp.task('default', ['browser-sync'], function () {
gulp.watch('public/**/*.js', ['js', browserSync.reload])
gulp.watch('public/**/*.css', ['css'])
gulp.watch('public/**/*.html', ['bs-reload'])
})