Skip to content

Commit 0214ebe

Browse files
authored
Move TS outdir to dist/ (#366)
1 parent 8ed8989 commit 0214ebe

File tree

19 files changed

+41
-85
lines changed

19 files changed

+41
-85
lines changed

.baseDir.d.ts

Whitespace-only changes.

.baseDir.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
/node_modules/
1616
/typescript/
1717
/coverage/
18-
/lib/
18+
/dist/

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "./node_modules/typescript/lib"
3+
}

bin/typedoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

3-
var td = require('../lib/cli.js');
3+
var td = require('../dist/lib/cli.js');
44
new td.CliApplication();

gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ module.exports = function(grunt)
9090
grunt.registerTask('build-specs', function() {
9191
var FS = require('fs-extra');
9292
var Path = require('path');
93-
var TypeDoc = require('./index.js');
93+
var TypeDoc = require('./');
9494

9595
var base = Path.join(__dirname, 'test', 'converter');
9696
var app = new TypeDoc.Application({

index.d.ts

Lines changed: 0 additions & 6 deletions
This file was deleted.

index.js

Lines changed: 0 additions & 15 deletions
This file was deleted.

index.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"description": "Create api documentations for typescript projects.",
44
"version": "0.5.1",
55
"homepage": "http://typedoc.org",
6-
"main": "index.js",
7-
"typings": "index.d.ts",
6+
"main": "dist/index.js",
7+
"typings": "dist/index.d.ts",
88
"bin": {
99
"typedoc": "bin/typedoc"
1010
},

0 commit comments

Comments
 (0)