-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.coffee
79 lines (73 loc) · 1.37 KB
/
Gruntfile.coffee
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
module.exports = (grunt)->
grunt.initConfig
unicode:
main:
files:[
{
src: 'test/fixtures/testing'
dest: 'tmp/default_options'
}
{
src: 'tmp/default_options_copy'
}
]
copy:
tmp:
files:
'tmp/default_options_copy': 'test/fixtures/testing'
coffee:
options:
bare: on
main:
files:[
expand: on
src: [
'test/**/*.coffee'
]
ext: '.js'
]
coffeelint:
options:
max_line_length:
value: 80
main:
files:
src: [
'Gruntfile.coffee'
'tasks/**/*.coffee'
'test/**/*.coffee'
]
watch:
main:
files: "**/*.coffee"
tasks: [
'coffeelint'
'coffee'
]
clean:
main: [
'*.tgz'
]
tests: [
'tmp'
'test/**/*.js'
]
nodeunit:
tests: 'test/*_test.js'
require('matchdep').filterDev('grunt-*').forEach grunt.loadNpmTasks
grunt.loadTasks 'tasks'
grunt.registerTask 'test', [
'unicode'
'nodeunit'
'clean:tests'
]
grunt.registerTask 'build', [
'clean'
'coffeelint'
'coffee'
'copy:tmp'
]
grunt.registerTask 'default', [
'build'
'watch'
]