[ONOS-6523] GUI Build: Removed third party libs from repo
- installed at build time as dependancies

Change-Id: I85fd69f0b14e6fd1af2693320c1ca23c62f58ac4
diff --git a/tools/gui/gulpfile.babel.js b/tools/gui/gulpfile.babel.js
index 2705872..24327e0 100644
--- a/tools/gui/gulpfile.babel.js
+++ b/tools/gui/gulpfile.babel.js
@@ -1,10 +1,6 @@
 import gulp from 'gulp';
 import * as Tasks from './gulp-tasks/';
 
-gulp.task('build', ['bundle-css', 'bundle-js']);
-gulp.task('tests', ['test']);
-
-gulp.task('default', []);
-
-// TODO: Uncomment once npm and buck issues are resolved.
-// gulp.task('default', ['bundle-js', 'serve', 'watch-js']);
\ No newline at end of file
+gulp.task('build', ['bower', 'bundle-css', 'bundle-js']);
+gulp.task('tests', ['bower', 'test']);
+gulp.task('default', ['bundle-js', 'serve', 'watch-js']);
\ No newline at end of file