-
Notifications
You must be signed in to change notification settings - Fork 85
/
Gruntfile.js
61 lines (54 loc) · 1.27 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
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');
grunt.initConfig({
concat: {
build: {
src: 'src/$.js',
dest: 'dist/$.js'
}
},
karma: {
// sadly, the file we test from isn't controllable here (tests src/$.js)
options: {
configFile: 'karma.conf.js',
runnerPort: 9999,
browsers: ['Firefox', 'Chrome', 'Safari', 'Opera']
},
all: {
},
build: {
singleRun: true
}
},
// mocha: {
// compiled: {
// src: 'dist/$.js',
// options: {
// helpers: 'test/helpers.js',
// specs: 'test/*.js'
// }
// }
// },
uglify: {
options: {
compress: true
},
build: {
src: 'src/$.js',
dest: 'dist/$.min.js'
}
},
watch: {
src: {
files: ['src/*.js', 'test/*.js'],
tasks: ['concat:build', 'karma:build:run']
}
}
});
grunt.registerTask('test', 'karma:all');
grunt.registerTask('build', ['concat:build', 'karma:build', 'uglify:build']);
grunt.registerTask('default', ['build']);
};