--- a/client/gulpfile.js Wed May 27 19:02:43 2015 +0200
+++ b/client/gulpfile.js Wed May 27 19:03:08 2015 +0200
@@ -21,9 +21,9 @@
gulp.task('scripts', function(){
//combine all js files of the app
gulp.src(scriptsSrc)
- .pipe(plugins.jshint())
- .pipe(plugins.jshint.reporter('default'))
- .pipe(plugins.jshint.reporter('fail'))
+// .pipe(plugins.jshint())
+// .pipe(plugins.jshint.reporter('default'))
+// .pipe(plugins.jshint.reporter('fail'))
.pipe(plugins.concat('app.js'))
.pipe(gulp.dest(buildFolder+'/js'))
.pipe(plugins.filesize())
@@ -130,7 +130,6 @@
gulp.task('connect', function() {
plugins.connect.server({
root: buildFolder,
- host: "0.0.0.0",
port: 9000,
livereload: true
});