onos/tools/gui/gulpfile.babel.js
Simon Hunt 5c3ed73c5a Revert "GUI: Added ESLint to gulp tasks GUI: Linted files Fixed an error in the build script"
This reverts commit 46c5f1087d76d93497a1e8e5593564991ccb6682.

Change-Id: I1464fdd1df075e93f885e3c1fbd02f0cc563fd4f
2017-07-20 19:08:07 +00:00

9 lines
216 B
JavaScript

import gulp from 'gulp';
import * as Tasks from './gulp-tasks/';
gulp.task('build', ['bundle-css', 'bundle-vendor', 'bundle-js']);
gulp.task('tests', ['test']);
gulp.task('default', function() {
// Do stuff
});