-
Notifications
You must be signed in to change notification settings - Fork 50
/
Gruntfile.coffee
46 lines (36 loc) · 1022 Bytes
/
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
module.exports = (grunt) ->
# Project configuration.
grunt.initConfig
coffeelint:
# global options
options:
indentation:
value: 4
level: 'warn'
# a target that overrides default options
one:
files:
src: ['test/fixtures/*.coffee']
options:
indentation:
value: 2
level: 'warn'
'no_trailing_semicolons':
level: 'warn'
# a simple target
two: ['test/fixtures/correct.coffee', 'test/fixtures/some.coffee']
'bump': options:
pushTo: 'upstream'
# Load local tasks.
grunt.loadTasks 'tasks'
grunt.loadNpmTasks 'grunt-npm'
grunt.loadNpmTasks 'grunt-bump'
grunt.loadNpmTasks 'grunt-auto-release'
# Default task.
grunt.registerTask 'default', 'coffeelint'
grunt.registerTask 'test', 'coffeelint'
grunt.registerTask 'release', 'Bump version, push to NPM.', (type)->
grunt.task.run [
"bump:#{type || 'patch'}"
'npm-publish'
]