Last active
August 29, 2015 14:04
-
-
Save M1ke/3a14b42489c0e7359e83 to your computer and use it in GitHub Desktop.
A basic but repetitive way of having bower go to multiple directories.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var gulp = require('gulp'); | |
| var bower = require('gulp-bower'); | |
| gulp.task('bower', function() { | |
| bower({ directory: '../../assets', cwd: './bower/assets/' }); | |
| bower({ directory: '../../js', cwd: './bower/js/' }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment