Rename bower_components

To components. Because tab-completion works better when there aren't two
things starting with bower, and shorter names are nicer to deal with in
general.
This commit is contained in:
lilia 2014-10-30 16:53:08 -07:00
parent 3a1789104e
commit 508c59e05c
37 changed files with 16 additions and 12 deletions

View file

@ -3,14 +3,14 @@ module.exports = function(grunt) {
// build the concat config from the preen config
var components = [];
for (component in grunt.file.readJSON('bower.json').preen) {
components.push('bower_components/' + component + '/**/*.js');
components.push('components/' + component + '/**/*.js');
}
grunt.initConfig({
concat: {
components: {
src: components,
dest: 'js-deps/bower_components.js',
dest: 'js/components.js',
},
},
});