mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
Commented out gulp tasks making this change uneffective Fixed an error in the build script Change-Id: I4f4f9762aa1a66304aa74b3ab208095b9c1d4515
10 lines
291 B
JavaScript
10 lines
291 B
JavaScript
import gulp from 'gulp';
|
|
import * as Tasks from './gulp-tasks/';
|
|
|
|
gulp.task('build', ['bundle-css', 'bundle-js']);
|
|
gulp.task('tests', ['test']);
|
|
|
|
gulp.task('default', []);
|
|
|
|
// TODO: Uncomment once npm and buck issues are resolved.
|
|
// gulp.task('default', ['bundle-js', 'serve', 'watch-js']);
|