mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
- installed at build time as dependancies Change-Id: I85fd69f0b14e6fd1af2693320c1ca23c62f58ac4
6 lines
220 B
JavaScript
6 lines
220 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', 'serve', 'watch-js']); |