X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=server%2Fgulpfile.js;h=99c58ab39a5dd0af95181c74df919470945c474c;hb=dac395887d96e2d642b209c6db6aaacc3ffacb34;hp=ae739d9619c05d2682dcc5cce904d4190239f805;hpb=625022fdcf750f0aff8fcd699f7e9b89730e1d10;p=vchess.git 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!') + }); });