diff --git a/package.json b/package.json index b6c1fd9ef..2779ef254 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/tasks/docs-task.coffee b/tasks/docs-task.coffee index 3d540a6a7..09eab5449 100644 --- a/tasks/docs-task.coffee +++ b/tasks/docs-task.coffee @@ -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)