From df35cb0756df7f2be1cf4a926f2c6ee3810dc724 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 2 Jul 2013 11:07:58 -0700 Subject: [PATCH] Bump the biscotto version This prevents doc builds from occuring when you're only interested in stats/missing --- package.json | 2 +- tasks/docs-task.coffee | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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)