Bump the biscotto version

This prevents doc builds from occuring when you're only interested in stats/missing
This commit is contained in:
Garen Torikian 2013-07-02 11:07:58 -07:00
parent 0e6a3c52ad
commit df35cb0756
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)