mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
This reverts commit 46c5f1087d76d93497a1e8e5593564991ccb6682. Change-Id: I1464fdd1df075e93f885e3c1fbd02f0cc563fd4f
9 lines
216 B
JavaScript
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
|
|
}); |