-
Notifications
You must be signed in to change notification settings - Fork 39
/
Gruntfile.coffee
44 lines (38 loc) · 1.16 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
module.exports = (grunt) ->
@loadNpmTasks('grunt-contrib-clean')
@loadNpmTasks('grunt-contrib-coffee')
@loadNpmTasks('grunt-contrib-watch')
@loadNpmTasks('grunt-mocha-cli')
@loadNpmTasks('grunt-mkdir')
@loadNpmTasks('grunt-release')
@initConfig
coffee:
all:
options:
bare: true
expand: true,
cwd: 'src',
src: ['*.coffee'],
dest: 'lib',
ext: '.js'
clean:
all: ['lib', 'tmp']
mkdir:
all:
options:
create: ['tmp']
watch:
all:
files: ['src/**.coffee', 'test/**.coffee']
tasks: ['test']
mochacli:
options:
files: 'test/*_test.coffee'
compilers: ['coffee:coffee-script']
spec:
options:
reporter: 'spec'
@registerTask 'default', ['test']
@registerTask 'build', ['clean', 'coffee']
@registerTask 'package', ['build', 'release']
@registerTask 'test', ['build', 'mkdir', 'mochacli']