forked from sergeyt/meteor-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
52 lines (43 loc) · 1.11 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
module.exports = (grunt) ->
# Project configuration.
grunt.initConfig
pkgFile: 'package.json'
'npm-contributors':
options:
commitMessage: 'chore: update contributors'
bump:
options:
commitMessage: 'chore: release v%VERSION%'
pushTo: 'origin'
'auto-release':
options:
checkTravisBuild: false
jshint:
options:
globals:
node: true,
console: true,
module: true,
require: true
dev:
src: ['*.js', 'demo/*.js']
coffeelint:
options:
no_tabs: {level: 'ignore'}
indentation: {level: 'ignore'}
dev: ['*.coffee']
grunt.loadNpmTasks 'grunt-contrib-jshint'
grunt.loadNpmTasks 'grunt-coffeelint'
grunt.loadNpmTasks 'grunt-npm'
grunt.loadNpmTasks 'grunt-bump'
grunt.loadNpmTasks 'grunt-auto-release'
grunt.registerTask 'release', 'Bump the version and publish to NPM.',
(type) -> grunt.task.run [
'npm-contributors',
"bump:#{type||'patch'}",
'npm-publish'
]
grunt.registerTask 'lint', ['coffeelint', 'jshint']
grunt.registerTask 'test', ['lint']
grunt.registerTask 'default', ['test']
grunt.registerTask 'contrib', ['npm-contributors']