-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
78 lines (71 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
'use strict';
var TESTS = ['test/spec/**/*.ut.js'];
var LIBS = [
'lib/**/*.js',
'index.js'
];
var CODE = LIBS.concat(TESTS);
module.exports = function gruntfile(grunt) {
var pkg = require('./package.json');
var npmTasks = Object.keys(pkg.devDependencies).filter(function(name) {
return (name !== 'grunt-cli') && (/^grunt-/).test(name);
});
npmTasks.forEach(function(name) {
grunt.task.loadNpmTasks(name);
});
grunt.task.loadTasks('./tasks');
grunt.initConfig({
eslint: {
code: {
src: CODE
},
tests: {
src: TESTS
}
},
karma: {
options: {
configFile: 'test/karma.conf.js'
},
tdd: {
options: {
autoWatch: true
}
},
test: {
options: {
singleRun: true
}
}
},
babel: {
options: {
sourceMaps: false
},
dist: {
files: [
{
expand: true,
cwd: '',
src: LIBS,
dest: 'dist'
}
]
}
},
clean: {
dist: {
src: ['dist']
}
}
});
grunt.registerTask('test', [
'karma:test',
'eslint'
]);
grunt.registerTask('tdd', ['karma:tdd']);
grunt.registerTask('build', [
'clean:dist',
'babel:dist'
]);
};