-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sebastian Hilger
committed
Mar 5, 2018
1 parent
1f59831
commit 9cee9b2
Showing
16 changed files
with
1,408 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* 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() | ||
} | ||
}); | ||
}; |
Empty file.
Oops, something went wrong.