-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gruntfile.coffee
71 lines (60 loc) · 1.66 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
coffee = require 'coffee-script'
module.exports = (grunt) ->
grunt.initConfig
clean:
build:
src: ["lib", ".cache", "tests.js.map", "tests.js"]
copy:
main:
files: [
{expand: true, cwd: 'src/', src: ['**/*.js'], dest: 'lib/'}
]
newer:
options:
cache: '.cache'
coffee:
options:
#bare: true
sourceMap: true
all:
src: ['**/*.coffee.md', '**/*.coffee']
dest: 'lib'
cwd: 'src'
#flatten: true
expand: true
ext: '.js'
mochaTest:
test:
options:
ui: 'bdd'
quiet: false
require: 'coffee-script/register'
reporter: 'dot'
check: ['src/**/*.coffee', 'test/**/*.js', 'test/**/*.coffee']
src: ['test/**/*-test.coffee']
watch:
options:
nospawn: true
all:
files: [
'Gruntfile.coffee'
'tasks/*.coffee'
'src/**/*.coffee'
'src/**/*.coffee.md'
'src/**/*.nools'
'src/**/*.js'
'test/*.coffee'
]
#grunt.loadTasks('tasks')
grunt.loadNpmTasks('grunt-mocha-test')
grunt.loadNpmTasks('grunt-contrib-copy')
grunt.loadNpmTasks('grunt-release')
grunt.loadNpmTasks('grunt-contrib-watch')
grunt.loadNpmTasks('grunt-contrib-coffee')
grunt.loadNpmTasks('grunt-contrib-clean')
grunt.loadNpmTasks('grunt-newer')
grunt.registerTask('build', ['newer:coffee', 'newer:copy'])
grunt.registerTask('rebuild', ['clean', 'build'])
grunt.registerTask('test', ['build', 'mochaTest'])
grunt.registerTask('watch', ['watch'])
grunt.registerTask('default', ['build'])