-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
48 lines (38 loc) · 1017 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
'use strict';
var gulp = require('gulp');
var clean = require('gulp-clean');
var browserSync = require('browser-sync');
var reload = browserSync.reload;
var nodemon = require('gulp-nodemon');
var notifier = require('node-notifier');
var config = require('./config.json');
gulp.task('browser-sync', ['nodemon'], function() {
browserSync.init(null, {
proxy: "http://localhost:"+config.port,
port: 7000,
});
});
gulp.task('nodemon', function (cb) {
var started = false;
console.log("nodemon");
return nodemon({
script: config.starter
}).on('start', function () {
if (!started) {
cb();
started = true;
}
});
});
gulp.task('clean', function() {
return gulp.src(config.dist)
.pipe(clean());
});
gulp.task('default', ['browser-sync'], function () {
notifier.notify({ title: 'Gulp', message: 'Start nodemon on '+config.starter });
gulp.watch(config.watch, reload);
});
gulp.task('build',['clean'], function(){
gulp.src(config.path+'/**/*.*')
.pipe(gulp.dest(config.dist));
});