Switch tagsinput to bower

This commit is contained in:
lilia 2014-10-31 00:40:00 -07:00
parent 6b034e951a
commit 0cc0b8cc72
6 changed files with 57 additions and 29 deletions

View file

@ -1,8 +1,10 @@
'use strict';
module.exports = function(grunt) {
var bower = grunt.file.readJSON('bower.json');
var components = [];
for (i in bower.concat.app) {
for (var i in bower.concat.app) {
components.push('components/' + bower.concat.app[i] + '/**/*.js');
}