UNPKG

176 BJavaScriptView Raw
1'use strict';
2
3var bower = require('gulp-bower');
4
5module.exports = function(options) {
6 return function() {
7 return bower({
8 cwd: options.paths.bower
9 });
10 };
11};