Skip to content

Instantly share code, notes, and snippets.

@fantactuka
Forked from lrvick/.bowerrc
Last active December 18, 2015 15:59
Show Gist options
  • Save fantactuka/5808206 to your computer and use it in GitHub Desktop.
Save fantactuka/5808206 to your computer and use it in GitHub Desktop.
{
"name": "testcase",
"dependencies": {
"backbone": "1.0.0",
"jquery": "1.10.1",
"bootstrap": "2.3.2"
},
"exportsOverride": {
"backbone": {
"js": "backbone.js"
},
"bootstrap": {
"js": "docs/assets/js/bootstrap.js",
"less": "less/*.less"
},
"jquery": {
"js": "jquery.js"
}
}
}
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-bower-task');
grunt.initConfig({
bower: {
install: {
options: {
verbose: true,
cleanup: true
}
}
}
});
};
{
"name": "testcase",
"version": "0.0.1",
"dependencies": {
"grunt-bower-task": "0.2.3",
"grunt": "~0.4.1",
"matchdep": "~0.1.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment