Merge pull request #610 from github/add-nooutput-to-biscotto

Bump the biscotto version
This commit is contained in:
Garen Torikian 2013-07-02 11:13:20 -07:00
commit 64e2fee975
2 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@
"nslog": "0.1.0"
},
"devDependencies": {
"biscotto": "0.0.11",
"biscotto": "0.0.12",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-coffeelint": "0.0.6",

View File

@ -13,10 +13,10 @@ module.exports = (grunt) ->
grunt.registerTask 'lint-docs', 'Generate stats about the doc coverage', ->
done = @async()
args = [commonArgs..., '--statsOnly', 'src/app/']
args = [commonArgs..., '--noOutput', 'src/app/']
grunt.util.spawn({cmd, args, opts}, done)
grunt.registerTask 'missing-docs', 'Generate stats about the doc coverage', ->
done = @async()
args = [commonArgs..., '--listMissing', 'src/app/']
args = [commonArgs..., '--noOutput', '--missing', 'src/app/']
grunt.util.spawn({cmd, args, opts}, done)