mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 09:21:06 +02:00
- installed at build time as dependancies Change-Id: I85fd69f0b14e6fd1af2693320c1ca23c62f58ac4
15 lines
282 B
JavaScript
15 lines
282 B
JavaScript
import gulp from 'gulp';
|
|
import bower from 'gulp-bower';
|
|
|
|
const bowerTask = () => {
|
|
return bower({
|
|
directory: 'vendor',
|
|
cwd: '../../web/gui/src/main/webapp',
|
|
});
|
|
};
|
|
|
|
const tasks = () => {
|
|
gulp.task('bower', () => bowerTask());
|
|
};
|
|
|
|
export default tasks(); |