use npm-installed docco rather than relying on globally installed docco

This commit is contained in:
Michael Ficarra 2014-02-01 21:06:21 -06:00
parent 4ab8503e5a
commit ed928928f6
2 changed files with 4 additions and 3 deletions

View File

@ -155,12 +155,12 @@ task 'doc:site', 'watch and continually rebuild the documentation for the websit
task 'doc:source', 'rebuild the internal documentation', ->
exec 'docco src/*.*coffee && cp -rf docs documentation && rm -r docs', (err) ->
exec 'node_modules/.bin/docco src/*.*coffee && cp -rf docs documentation && rm -r docs', (err) ->
throw err if err
task 'doc:underscore', 'rebuild the Underscore.coffee documentation page', ->
exec 'docco examples/underscore.coffee && cp -rf docs documentation && rm -r docs', (err) ->
exec 'node_modules/.bin/docco examples/underscore.coffee && cp -rf docs documentation && rm -r docs', (err) ->
throw err if err
task 'bench', 'quick benchmark of compilation time', ->

View File

@ -34,7 +34,8 @@
"uglify-js": "~2.2",
"jison": ">=0.2.0",
"highlight.js": "~8.0.0",
"underscore": "~1.5.2"
"underscore": "~1.5.2",
"docco": "0.6.x"
},
"dependencies": {
"mkdirp": "~0.3.5"