forked from moul/node-leboncoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grunt.js
41 lines (39 loc) · 883 Bytes
/
grunt.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
// Generated by CoffeeScript 1.4.0
(function() {
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-coffee');
grunt.initConfig({
lint: {
files: ['*.js', '*.json', 'lib/*.js']
},
jshint: {
options: {
curly: false,
newcap: false,
shadow: true,
undef: true,
eqeqeq: true,
immed: true,
latedef: true,
noarg: true,
sub: true,
boss: true,
eqnull: true,
node: true,
strict: false
}
},
coffee: {
app: {
src: ['src/*.coffee'],
dest: 'lib'
}
},
watch: {
files: ["*.js", "*.json", "src/*.coffee", "test/*.coffee"],
tasks: "coffee lint"
}
});
return grunt.registerTask('default', 'coffee');
};
}).call(this);