forked from RobotWebTools/roslibjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
116 lines (111 loc) · 2.48 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
'use strict';
module.exports = function(grunt) {
// Time how long tasks take. Can help when optimizing build times
require('time-grunt')(grunt);
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
browserify: {
dist: {
src: ['./src/RosLibBrowser.js'],
dest: './build/roslib.js'
}
},
jshint: {
options: {
jshintrc: true
},
files: [
'./Gruntfile.js',
'./src/**/*.js'
]
},
karma: {
options: {
singleRun: true,
browsers: process.env.CI ? ['FirefoxHeadless'] : ['Firefox']
},
test: {
configFile: './test/karma.conf.js',
},
examples: {
configFile: './test/examples/karma.conf.js',
},
workersocket: {
configFile: './test/workersocket/karma.conf.js',
},
},
mochaTest: {
options: {
reporter: 'spec',
timeout: 5000
},
test: {
src: ['./test/*.test.js']
},
examples: {
src: ['./test/examples/*.js']
},
tcp: {
src: ['./test/tcp/*.js']
}
},
uglify: {
options: {
report: 'min'
},
build: {
src: './build/roslib.js',
dest: './build/roslib.min.js'
}
},
watch: {
dev: {
options: {
interrupt: true
},
files: [
'./src/**/*.js'
],
tasks: ['browserify']
},
build_and_watch: {
options: {
interrupt: true
},
files: [
'Gruntfile.js',
'.jshintrc',
'./src/**/*.js'
],
tasks: ['build']
}
},
clean: {
options: {
force: true
},
doc: ['./doc']
},
jsdoc: {
doc: {
src: [
'./src/**/*.js'
],
options: {
destination: './doc',
private: false
}
}
}
});
grunt.registerTask('dev', ['browserify', 'watch']);
grunt.registerTask('test', ['jshint', 'mochaTest:test', 'karma:test']);
grunt.registerTask('test-examples', ['mochaTest:examples', 'karma:examples']);
grunt.registerTask('test-tcp', ['mochaTest:tcp']);
grunt.registerTask('test-workersocket', ['karma:workersocket']);
grunt.registerTask('build', ['browserify', 'uglify']);
grunt.registerTask('build_and_watch', ['watch']);
grunt.registerTask('doc', ['clean', 'jsdoc']);
};