Separate client and server codes. Keep everything in one git repo for simplicity
[vchess.git] / gulpfile.js
diff --git a/gulpfile.js b/gulpfile.js
deleted file mode 100644 (file)
index ae739d9..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-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']
-};
-
-gulp.task('start', function () {
-       nodemon(nodemonOptions)
-       .on('restart', function () {
-               console.log('restarted!')
-       });
-});