-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGruntfile.js
44 lines (36 loc) · 1.14 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
function loadConfig(path) {
var string = require('string');
var glob = require('glob');
var object = {};
var key;
glob.sync('*', { cwd: path }).forEach(function(option) {
key = option.replace(/\.js$/,'');
key = string(key).camelize().s;
object[key] = require(path + option);
});
return object;
}
module.exports = function(grunt) {
var config = {
pkg: grunt.file.readJSON('package.json'),
env: process.env,
clean: ['tmp']
};
grunt.util._.extend(config, loadConfig('./tasks/options/'));
grunt.initConfig(config);
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
grunt.loadTasks('tasks');
grunt.registerTask('default', ['build']);
grunt.registerTask('build', [
'lock',
'clean',
'transpile',
'jshint',
'copy',
'emberTemplates:compile',
'sass:compile',
'concat',
'unlock' ]);
grunt.registerTask('test', ['build', 'qunit']);
grunt.registerTask('server', ['build', 'connect', 'watch']);
};