-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.coffee
61 lines (50 loc) · 1.23 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
module.exports = (grunt) ->
{ version } = require './package.json'
grunt.initConfig
jshint:
all: [
"Gruntfile.js"
"tasks/*.js"
"<%= nodeunit.tests %>"
]
options:
jshintrc: ".jshintrc"
clean:
tests: [".tmp"]
nar:
create:
src: 'package.json'
dest: '.tmp/'
createMultiple:
src: ['node_modules/hu', 'node_modules/fw']
dest: '.tmp/'
createExec:
options: executable: yes
src: 'package.json'
dest: '.tmp/'
extract:
options: mode: 'extract'
src: ".tmp/grunt-nar-#{version}.nar"
dest: '.tmp/extract'
extractMultiple:
options: mode: 'extract'
src: [".tmp/hu-*.nar", ".tmp/fw-*.nar"]
dest: '.tmp/extract-multiple'
mochacli:
options:
compilers: ['coffee:coffee-script/register']
timeout: 10000
ignoreLeaks: false
ui: 'bdd'
reporter: 'spec'
all:
src: ['test/*.coffee']
grunt.loadTasks "tasks"
grunt.loadNpmTasks "grunt-contrib-clean"
grunt.loadNpmTasks "grunt-mocha-cli"
grunt.registerTask "test", [
"clean"
"nar"
"mochacli"
]
grunt.registerTask "default", ["test"]