Skip to content

Commit 0e7324f

Browse files
Tidy up
1 parent 435bd59 commit 0e7324f

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
> Documentation generator for TypeScript projects.
44
5+
[![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)
6+
57

68
## Installation
79

examples/definitely-typed/run.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
set curr_dir=%cd%
33
chdir /D "%~dp0"
44

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

77
chdir /D "%curr_dir%"

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@
2828
},
2929
"dependencies": {
3030
"typescript": "^1.0.1",
31-
"fs-extra": "^0.9.1",
31+
"fs-extra": "^0.10.0",
3232
"minimatch": "^0.3.0",
3333
"handlebars": "^2.0.0-alpha.4",
3434
"marked": "^0.3.2",
35-
"highlight.js": "^8.0.0"
35+
"highlight.js": "^8.1.0"
3636
},
3737
"devDependencies": {
3838
"grunt": "^0.4.5",
39-
"grunt-ts": "^1.11.2",
39+
"grunt-ts": "^1.11.3",
4040
"grunt-contrib-watch": "~0.6.1",
4141
"grunt-contrib-sass": "^0.7.3",
4242
"grunt-contrib-copy": "^0.5.0",
43-
"grunt-contrib-uglify": "^0.4.0",
43+
"grunt-contrib-uglify": "^0.5.0",
4444
"grunt-string-replace": "^0.2.7"
4545
},
4646
"files": [

test/fixtures/basic/functions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@
55
*/
66
export function testFunction(testParam:string):boolean {
77
return true;
8-
}
9-
-
8+
}

0 commit comments

Comments
 (0)