Skip to content

Instantly share code, notes, and snippets.

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