gentelella/vendors/jquery.tagsinput/Gruntfile.js
christianesperar 6a6db2ea23 Put dependecy libraries to bower for easy updating
Update also fix some following problem:
- Switcher now working
- Datatable header fix example is now working
- Add missing starrr ratings
- Some mobile responsiveness on table.html page
2016-04-24 22:26:16 +08:00

31 lines
726 B
JavaScript

function loadConfig(path) {
var glob = require('glob');
var object = {};
var key;
glob.sync('*', {cwd: path}).forEach(function(option) {
key = option.replace(/\.js$/,'');
object[key] = require(path + option);
});
return object;
}
module.exports = function(grunt) {
grunt.loadTasks('grunt-tasks');
require('time-grunt')(grunt);
// Only load tasks when they are needed
require('jit-grunt')(grunt, {
ngtemplates: 'grunt-angular-templates'
});
var config = {
pkg: grunt.file.readJSON('package.json'),
env: process.env
};
grunt.util._.extend(config, loadConfig('./grunt-tasks/options/'));
grunt.initConfig(config);
};