generator-hilary
Version:
Yeoman generator for projects that use hilary IoC (DI)
20 lines (14 loc) • 457 B
JavaScript
module.exports = function (grunt) {
'use strict';
var os;
// arguments
os = grunt.option('os') || 'osx';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json')
});
grunt.config('path-root', '.');
grunt.config('path-to-scripts', './public/scripts');
grunt.config('path-to-environment', './common/environment');
grunt.loadTasks('./common/build-tasks');
grunt.registerTask('default', ['help']);
};