mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 17:01:02 +02:00
JIRA: ONOS-6657 Also added css into the browsersync tasks within gulp Change-Id: Ibcf342c89b8e1eae131f5cb3694e3632bc134534
6 lines
247 B
JavaScript
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']); |