Skip to content

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-lenz committed Jul 10, 2014
1 parent 435bd59 commit 0e7324f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

> Documentation generator for TypeScript projects.
[![Build Status](https://travis-ci.org/sebastian-lenz/typedoc.svg?branch=master)](https://travis-ci.org/sebastian-lenz/typedoc) [![NPM version](https://badge.fury.io/js/typedoc.svg)](http://badge.fury.io/js/typedoc)


## Installation

Expand Down
2 changes: 1 addition & 1 deletion examples/definitely-typed/run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
set curr_dir=%cd%
chdir /D "%~dp0"

node run.js --includeDeclarations --module commonjs --name "Definitely Typed" --out doc\ src\
node run.js --includeDeclarations --module commonjs --name "Definitely Typed" --readme none --out doc\ src\

chdir /D "%curr_dir%"
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@
},
"dependencies": {
"typescript": "^1.0.1",
"fs-extra": "^0.9.1",
"fs-extra": "^0.10.0",
"minimatch": "^0.3.0",
"handlebars": "^2.0.0-alpha.4",
"marked": "^0.3.2",
"highlight.js": "^8.0.0"
"highlight.js": "^8.1.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-ts": "^1.11.2",
"grunt-ts": "^1.11.3",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-sass": "^0.7.3",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-uglify": "^0.5.0",
"grunt-string-replace": "^0.2.7"
},
"files": [
Expand Down
3 changes: 1 addition & 2 deletions test/fixtures/basic/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
*/
export function testFunction(testParam:string):boolean {
return true;
}
-
}

0 comments on commit 0e7324f

Please sign in to comment.