diff --git a/Cakefile b/Cakefile index f89b9150..c994c445 100644 --- a/Cakefile +++ b/Cakefile @@ -50,10 +50,14 @@ task 'build:browser', 'rebuild the merged script for inclusion in the browser', throw err if err -task 'doc', 'watch and continually rebuild the documentation', -> +task 'doc:site', 'watch and continually rebuild the documentation for the website', -> exec 'rake doc' +task 'doc:source', 'rebuild the internal documentation', -> + exec 'docco src/*.coffee && mv docs documentation/docs' + + task 'test', 'run the CoffeeScript language test suite', -> process.mixin require 'assert' test_count: 0