Skip to content

Instantly share code, notes, and snippets.

@MolchanovEduard
Last active May 1, 2017 20:46
Show Gist options
  • Save MolchanovEduard/24ea5361e160877c554384907ca6158b to your computer and use it in GitHub Desktop.
Save MolchanovEduard/24ea5361e160877c554384907ca6158b to your computer and use it in GitHub Desktop.
gulp wiredep
var g=require("gulp"),
w=require("wiredep").stream;
g.task("wd", function(){
g.src('app/index.html')
.pipe(w())
.pipe(g.dest(app));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment