Skip to content

Instantly share code, notes, and snippets.

@colintoh
Last active August 29, 2015 14:09
Show Gist options
  • Save colintoh/0a5181f6b860b5a6dc88 to your computer and use it in GitHub Desktop.
Save colintoh/0a5181f6b860b5a6dc88 to your computer and use it in GitHub Desktop.
module.exports = function(grunt){
require("matchdep").filter("grunt-*").forEach(grunt.loadNpmTasks);
grunt.initConfig({
wiredep: {
target: {
src:'index.html'
}
}
});
grunt.registerTask('default',['wiredep']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment