-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
59 lines (49 loc) · 1.08 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
/*jshint sub:true */
module.exports = function( grunt ) {
//
//
// Setup
//
//
// Node includes
//
var path = require( 'path' ),
fs = require( 'fs' );
//
// Grunt module includes
// Make sure all task here are defined in package.json `devDependenices`
//
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-plugin-buster' );
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
//
// Vars
//
var config = {
jshint: {},
buster: {},
uglify: {}
};
// Lint all files
config.jshint[ 'all' ] = ['Gruntfile.js', 'load.js', 'test/**/*.js'];
// Test all files
config.buster[ 'browser global' ] = {};
config.buster[ 'browser AMD' ] = {};
// Minify lib
config.uglify[ 'load' ] = {
options: {
preserveComments: 'some'
},
files: {
'load.min.js': [ 'load.js' ]
}
};
// Default task
grunt.registerTask( 'test', [ 'jshint', 'buster' ] );
grunt.registerTask( 'build', [ 'jshint', 'buster', 'uglify' ] );
grunt.registerTask( 'default', [ 'jshint', 'buster', 'uglify' ] );
//
// Initialise and setup grunt
//
grunt.initConfig( config );
};