X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=server%2Fgulpfile.js;h=99c58ab39a5dd0af95181c74df919470945c474c;hp=ae739d9619c05d2682dcc5cce904d4190239f805;hb=dac395887d96e2d642b209c6db6aaacc3ffacb34;hpb=5fde3a01497262862afc4cb4c9457d4e0ad69a4a diff --git a/server/gulpfile.js b/server/gulpfile.js index ae739d96..99c58ab3 100644 --- a/server/gulpfile.js +++ b/server/gulpfile.js @@ -2,16 +2,16 @@ var gulp = require('gulp'); var nodemon = require('gulp-nodemon'); //reload server on changes var nodemonOptions = { - script: 'bin/www', - ext: 'js', - env: { 'NODE_ENV': 'development' }, - verbose: true, - watch: ['./','routes','bin'] + script: 'bin/www', + ext: 'js', + env: { 'NODE_ENV': 'development' }, + verbose: true, + watch: ['./','routes','bin'] }; gulp.task('start', function () { - nodemon(nodemonOptions) - .on('restart', function () { - console.log('restarted!') - }); + nodemon(nodemonOptions) + .on('restart', function () { + console.log('restarted!') + }); });