onos/tools/gui/gulpfile.babel.js
Steven Burrows 1270c18e06 Topo2: Added Friendly host names
JIRA: ONOS-6657

Also added css into the browsersync tasks within gulp

Change-Id: Ibcf342c89b8e1eae131f5cb3694e3632bc134534
2017-09-14 17:13:49 +00:00

6 lines
247 B
JavaScript

import gulp from 'gulp';
import * as Tasks from './gulp-tasks/';
gulp.task('build', ['bower', 'bundle-css', 'bundle-js']);
gulp.task('tests', ['bower', 'test']);
gulp.task('default', ['bundle-js', 'bundle-css', 'serve', 'watch-js', 'watch-css']);