Files
nodeRestAPI/node_modules/gulp-nodemon/Gulpfile.js
2017-05-20 16:42:43 -04:00

46 lines
1023 B
JavaScript

var gulp = require('gulp')
, jshint = require('gulp-jshint')
, nodemon = require('./index')
// , path = require('path')
// gulp.task('test', function () {
// gulp.src('./test/*-test.js')
// .pipe(jshint({ asi: true, laxcomma: true }))
// .pipe(mocha({ ui: 'bdd' }))
// })
gulp.task('lint', function (){
gulp.src('./*/**.js')
.pipe(jshint())
})
gulp.task('cssmin', function (){ /* void */
})
gulp.task('afterstart', function (){
console.log('proc has finished restarting!')
})
gulp.task('test', ['lint'], function () {
var stream = nodemon({
nodemon: require('nodemon')
, script: './test/server.js'
, verbose: true
, env: {
'NODE_ENV': 'development'
}
, watch: './'
, ext: 'js coffee'
})
stream
.on('restart', 'cssmin')
.on('crash', function (){
console.error('\nApplication has crashed!\n')
console.error('Restarting in 2 seconds...\n')
setTimeout(function () {
stream.emit('restart')
}, 2000)
})
})