UNPKG

susi-forge

Version:
26 lines (21 loc) 586 B
'use strict'; module.exports = function(grunt) { grunt.option('commandline-options', { stdout: true, stderr: true, failOnError: true }); // auto-loading require('load-grunt-tasks')(grunt, { pattern: ['grunt-*'], config: 'package.json', scope: ['devDependencies', 'dependencies'] }); require('time-grunt')(grunt); // config grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), }); grunt.loadTasks(grunt.config('pkg.project.directories.build_config')); grunt.loadTasks(grunt.config('pkg.project.directories.build_tasks')); };