forked from MrSwitch/hello.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
51 lines (46 loc) · 1.15 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
//
// Grunttask runners
//
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
files: ['Gruntfile.js', 'src/**/*.js'],//, 'test/**/*.js'],
options: {
// options here to override JSHint defaults
globals: {
console: true,
module: true,
document: true
},
// dont check dot notation
sub :true
}
},
watch: {
files: ['<%= jshint.files %>'],
tasks: ['jshint']
},
// Shunt files around
shunt : {
// Shunt the documents of our project
docs : {
'README.md' : './index.html'
},
// Combine the src files, create minified versions
build : {
'dist/hello.js' : ['src/hello.js', 'src/hello.amd.js'],
'dist/hello.all.js' : ['src/hello.js', 'src/modules/', 'src/hello.amd.js']
},
minify : {
'dist/hello.min.js' : 'dist/hello.js',
'dist/hello.all.min.js' : 'dist/hello.all.js'
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('shunt');
grunt.registerTask('test', ['jshint']);
grunt.registerTask('default', ['jshint', 'shunt:build', 'shunt:minify']);
};