mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-29 21:17:34 +00:00
14 lines
313 B
TypeScript
14 lines
313 B
TypeScript
import gulp = require('gulp');
|
|
import wiredep = require('wiredep');
|
|
|
|
gulp.task('bower', function () {
|
|
gulp.src('./src/footer.html')
|
|
.pipe(wiredep.stream({
|
|
cwd:'.',
|
|
overrides:{
|
|
optional: 'configuration',
|
|
goes: 'here'
|
|
}
|
|
}))
|
|
.pipe(gulp.dest('./dest'));
|
|
}); |