forked from googlearchive/backbonefire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
68 lines (61 loc) · 1.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
/* global module */
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
uglify : {
app : {
files : {
'backbone-firebase.min.js' : ['backbone-firebase.js']
}
}
},
jshint : {
options : {
'bitwise' : true,
'boss' : true,
'browser' : true,
'curly' : true,
'devel' : true,
'eqnull' : true,
'globals' : {
'Backbone' : false,
'Firebase' : false
},
'globalstrict' : true,
'indent' : 2,
'latedef' : true,
'maxlen' : 115,
'noempty' : true,
'nonstandard' : true,
'undef' : true,
'unused' : true,
'trailing' : true
},
all : ['backbone-firebase.js']
},
watch : {
scripts : {
files : 'backbone-firebase.js',
tasks : ['default', 'notify:watch'],
options : {
interrupt : true
}
}
},
notify: {
watch: {
options: {
title: 'Grunt Watch',
message: 'Build Finished'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-exec');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-notify');
grunt.registerTask('build', ['jshint', 'uglify']);
grunt.registerTask('default', ['build']);
};