forked from karma-runner/karma-ie-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.coffee
101 lines (87 loc) · 2.29 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
JSHINT_NODE =
node: true,
strict: false
module.exports = (grunt) ->
allSrc = ['index.js']
allTests = ['test/mocha-globals.coffee', 'test/*.spec.coffee']
all = [].concat(allSrc).concat(allTests).concat(['Gruntfile.coffee'])
# Project configuration.
grunt.initConfig
pkgFile: 'package.json'
'npm-contributors':
options:
commitMessage: 'chore: update contributors'
bump:
options:
commitMessage: 'chore: release v%VERSION%'
pushTo: 'upstream'
'auto-release':
options:
checkTravisBuild: false
# JSHint options
# http://www.jshint.com/options/
jshint:
default:
files:
src: allSrc
options: JSHINT_NODE
options:
quotmark: 'single'
bitwise: true
freeze: true
indent: 2
camelcase: true
strict: true
trailing: true
curly: true
eqeqeq: true
immed: true
latedef: true
newcap: true
noempty: true
unused: true
noarg: true
sub: true
undef: true
maxdepth: 4
maxstatements: 100
maxcomplexity: 100
maxlen: 100
globals: {}
jscs:
default: files: src: allSrc
options:
config: '.jscs.json'
simplemocha:
options:
ui: 'bdd'
reporter: 'dot'
unit:
src: allTests
watch:
files: all
tasks:['default']
# CoffeeLint options
# http://www.coffeelint.org/#options
coffeelint:
unittests: files: src: ['Gruntfile.coffee', 'test/**/*.coffee']
options:
max_line_length:
value: 100
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-npm'
grunt.loadNpmTasks 'grunt-bump'
grunt.loadNpmTasks 'grunt-auto-release'
grunt.loadNpmTasks 'grunt-contrib-jshint'
grunt.loadNpmTasks 'grunt-jscs-checker'
grunt.loadNpmTasks 'grunt-simple-mocha'
grunt.loadNpmTasks 'grunt-coffeelint'
grunt.registerTask 'release', 'Bump the version and publish to NPM.', (type) ->
grunt.task.run [
'npm-contributors',
"bump:#{type||'patch'}",
'npm-publish'
]
grunt.registerTask 'test', ['simplemocha']
grunt.registerTask 'default', ['lint', 'test']
grunt.registerTask 'lint', ['jshint', 'jscs', 'coffeelint']