Permalink
...
Comparing changes
Open a pull request
- 5 commits
- 34 files changed
- 0 commit comments
- 1 contributor
Unified
Split
Showing
with
11,524 additions
and 1,150 deletions.
- +1 −1 Cakefile
- +239 −8 documentation/docs/browser.html
- +305 −17 documentation/docs/cake.html
- +473 −23 documentation/docs/coffee-script.html
- +579 −39 documentation/docs/command.html
- +325 −91 documentation/docs/docco.css
- +1,418 −106 documentation/docs/grammar.html
- +417 −22 documentation/docs/helpers.html
- +124 −2 documentation/docs/index.html
- +1,625 −116 documentation/docs/lexer.html
- +2,914 −240 documentation/docs/nodes.html
- +301 −23 documentation/docs/optparse.html
- BIN documentation/docs/public/fonts/aller-bold.eot
- BIN documentation/docs/public/fonts/aller-bold.ttf
- BIN documentation/docs/public/fonts/aller-bold.woff
- BIN documentation/docs/public/fonts/aller-light.eot
- BIN documentation/docs/public/fonts/aller-light.ttf
- BIN documentation/docs/public/fonts/aller-light.woff
- BIN documentation/docs/public/fonts/fleurons.eot
- BIN documentation/docs/public/fonts/fleurons.ttf
- BIN documentation/docs/public/fonts/fleurons.woff
- BIN documentation/docs/public/fonts/novecento-bold.eot
- BIN documentation/docs/public/fonts/novecento-bold.ttf
- BIN documentation/docs/public/fonts/novecento-bold.woff
- BIN documentation/docs/public/images/gray.png
- +375 −0 documentation/docs/public/stylesheets/normalize.css
- +307 −8 documentation/docs/repl.html
- +1,034 −78 documentation/docs/rewriter.html
- +420 −28 documentation/docs/scope.html
- +661 −39 documentation/docs/sourcemap.html
- +0 −295 documentation/docs/underscore.html
- +5 −3 src/lexer.coffee
- +0 −8 src/nodes.coffee
- +1 −3 src/sourcemap.coffee
View
2
Cakefile
| @@ -128,7 +128,7 @@ 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 'docco src/*.*coffee && cp -rf docs documentation && rm -r docs', (err) -> | ||
| throw err if err | ||
Oops, something went wrong.