From 6ec8b6e26fc004c12bbcf5ab6d2e856d71c6403f Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 14 Aug 2013 10:48:16 -0700 Subject: [PATCH] Update doc tasks for new src layout --- tasks/docs-task.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/docs-task.coffee b/tasks/docs-task.coffee index 6206e7fe5..bb5ce4144 100644 --- a/tasks/docs-task.coffee +++ b/tasks/docs-task.coffee @@ -8,17 +8,17 @@ module.exports = (grunt) -> grunt.registerTask 'build-docs', 'Builds the API docs in src/app', -> done = @async() - args = [commonArgs..., '-o', 'docs/api', 'src/app/'] + args = [commonArgs..., '-o', 'docs/api', 'src/'] grunt.util.spawn({cmd, args, opts}, done) grunt.registerTask 'lint-docs', 'Generate stats about the doc coverage', -> done = @async() - args = [commonArgs..., '--noOutput', 'src/app/'] + args = [commonArgs..., '--noOutput', 'src/'] grunt.util.spawn({cmd, args, opts}, done) grunt.registerTask 'missing-docs', 'Generate stats about the doc coverage', -> done = @async() - args = [commonArgs..., '--noOutput', '--missing', 'src/app/'] + args = [commonArgs..., '--noOutput', '--missing', 'src/'] grunt.util.spawn({cmd, args, opts}, done) grunt.registerTask 'deploy-docs', 'Publishes latest API docs to atom-docs.githubapp.com', ->