forked from ramiel/router.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
89 lines (78 loc) · 2.38 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
module.exports = function(grunt) {
var package_config = grunt.file.readJSON('package.json');
package_config.basename = 'router';
package_config.src_dir = 'src';
package_config.dist_dir = 'dist';
// Project configuration.
grunt.initConfig({
pkg: package_config,
clean: {
doc: ['doc/*','!doc/sftp-config.*']
},
uglify: {
//all:{
options: {
banner: '/*!\n<%= pkg.basename %>\n'+
'@version: <%= pkg.version %>\n'+
'@description: <%= pkg.description %>\n'+
'@author: <%= pkg.author %>\n'+
'@website: <%= pkg.website %>\n'+
'@license <%= pkg.license %>\n'+
//'Build on <%= grunt.template.today("yyyy-mm-dd") %>\n'+
'*/',
sourceMap: true,
sourceMapName: '<%= pkg.dist_dir %>/<%= pkg.basename %>.min.js.map'
},
build: {
src: '<%=pkg.src_dir %>/<%= pkg.basename %>.js',
dest: '<%= pkg.dist_dir %>/<%= pkg.basename %>.min.js'
}
//}
},
jshint: {
build:{
files: {
src: ['<%=pkg.src_dir %>/<%= pkg.basename %>.js']
}
}
},
karma: {
options: {
configFile: 'karma.conf.js'
},
unit:{
reporters: 'dots'
},
dev: {
reporters: 'mocha'
}
},
watch: {
files : ['<%= pkg.src_dir %>/<%= pkg.basename %>.js'],
tasks: ['jshint','uglify'],
},
jsdoc : {
main : {
src: ['API.md', '<%= pkg.src_dir %>/<%= pkg.basename %>.js'],
options: {
configure: '.jsdoc.config',
destination: 'doc',
lenient : true,
private : false
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-jsdoc');
// Default task(s).
grunt.registerTask('default', 'Builds and launches tests', ['newer:uglify:build','jshint','karma:unit']);
grunt.registerTask('precommit', 'Used internally to validate code before commit', ['newer:uglify:build']);
grunt.registerTask('test', 'Launches all the tests', ['jshint','karma:dev']);
grunt.registerTask('doc', 'Builds the documentation', ['clean:doc', 'jsdoc']);
};