Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Hilger committed Mar 5, 2018
1 parent 1f59831 commit 9cee9b2
Show file tree
Hide file tree
Showing 16 changed files with 1,408 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
25 changes: 25 additions & 0 deletions Gruntfile.js
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.
Loading

0 comments on commit 9cee9b2

Please sign in to comment.