chartist-js/Gruntfile.js
2014-11-23 11:09:49 +01:00

32 lines
657 B
JavaScript

/**
* Grunt Configurations
* ====================
*
* Seperate tasks and configurations are declared in '/tasks'.
*
* Link: https://github.com/firstandthird/load-grunt-config
*/
'use strict';
module.exports = function (grunt) {
// tracks how long a tasks take
require('time-grunt')(grunt);
// load task and configurations
require('load-grunt-config')(grunt, {
configPath: __dirname + '/tasks',
data: {
pkg: grunt.file.readJSON('package.json'),
year: new Date().getFullYear()
},
jitGrunt: {
staticMappings: {
'useminPrepare': 'grunt-usemin',
'assemble': 'assemble'
}
}
});
};