onos/tools/gui/gulpfile.babel.js
Steven Burrows 1c2a9685de GUI: Added ESLint to gulp tasks. ONOS-6521
Commented out gulp tasks making this change uneffective
Fixed an error in the build script

Change-Id: I4f4f9762aa1a66304aa74b3ab208095b9c1d4515
2017-08-07 18:12:46 +00:00

10 lines
291 B
JavaScript

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']);