forked from Sorebo/jQuery-xml2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
55 lines (45 loc) · 1.16 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
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:
# Expected an assignment or function call and instead saw an expression.
'-W030': true,
globals:
node: true,
console: true,
module: true,
require: true
all:
options:
ignores: ['*.min.js', 'src/*.min.js']
src: ['*.js', 'src/*.js']
karma:
unit:
configFile: 'karma.conf.js'
singleRun: true
grunt.loadNpmTasks 'grunt-contrib-jshint'
grunt.loadNpmTasks 'grunt-npm'
grunt.loadNpmTasks 'grunt-bump'
grunt.loadNpmTasks 'grunt-auto-release'
grunt.loadNpmTasks 'grunt-karma'
grunt.registerTask 'release', 'Bump the version and publish to NPM.',
(type) -> grunt.task.run [
'npm-contributors',
"bump:#{type||'patch'}",
'npm-publish'
]
grunt.registerTask 'lint', ['jshint']
grunt.registerTask 'test', ['lint', 'karma']
grunt.registerTask 'default', ['test']