PHP Classes

File: vendors/jquery.tagsinput/Gruntfile.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/jquery.tagsinput/Gruntfile.js   Download  
File: vendors/jquery.tagsinput/Gruntfile.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 696 bytes
 

Contents

Class file image Download
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); };