Skip to content

Commit dfb7207

Browse files
committed
Revert "Merge branch 'master' into master"
This reverts commit 29df793, reversing changes made to dc3c6f9.
1 parent 29df793 commit dfb7207

File tree

8 files changed

+27
-40
lines changed

8 files changed

+27
-40
lines changed

.github/pull.yml

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

examples/basic/media/logo-128.png

1 Byte
Loading

package-lock.json

Lines changed: 17 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@gerrit0/typedoc",
2+
"name": "typedoc",
33
"description": "Create api documentation for TypeScript projects.",
4-
"version": "0.15.0",
4+
"version": "0.15.0-0",
55
"homepage": "https://typedoc.org",
66
"main": "dist/index.js",
77
"typings": "dist/index.d.ts",
@@ -15,7 +15,7 @@
1515
"license": "Apache-2.0",
1616
"repository": {
1717
"type": "git",
18-
"url": "git://github.com/Gerrit0/TypeDoc.git"
18+
"url": "git://github.com/TypeStrong/TypeDoc.git"
1919
},
2020
"bugs": {
2121
"url": "https://github.com/TypeStrong/TypeDoc/issues"
@@ -30,7 +30,6 @@
3030
"node": ">= 6.0.0"
3131
},
3232
"dependencies": {
33-
"@gerrit0/typedoc-default-themes": "^0.6.0",
3433
"@types/minimatch": "3.0.3",
3534
"fs-extra": "^7.0.1",
3635
"handlebars": "^4.1.2",
@@ -40,6 +39,7 @@
4039
"minimatch": "^3.0.0",
4140
"progress": "^2.0.3",
4241
"shelljs": "^0.8.3",
42+
"typedoc-default-themes": "^0.6.0-0",
4343
"typescript": "3.5.x"
4444
},
4545
"devDependencies": {
@@ -64,7 +64,7 @@
6464
],
6565
"scripts": {
6666
"pretest": "node scripts/copy_test_files.js",
67-
"test": "nyc --reporter=html --reporter=text-summary mocha --timeout=30000 dist/test/*.test.js",
67+
"test": "nyc --reporter=html --reporter=text-summary mocha --timeout=10000 dist/test/*.test.js",
6868
"test:ts": "mocha --require ts-node/register --watch-extensions ts --timeout=10000 src/test/*.test.ts",
6969
"build": "tsc --project .",
7070
"postbuild": "node scripts/replace_application_version.js",

scripts/rebuild_specs.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ const app = new TypeDoc.Application({
1616
"lib.es2015.iterable.d.ts",
1717
"lib.es2015.collection.d.ts"
1818
],
19-
name: 'typedoc'
2019
});
2120

2221
const base = path.join(__dirname, '../src/test/converter');

src/lib/output/renderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ export class Renderer extends ChildableComponent<Application, RendererComponent>
279279
* @returns The path to the theme directory.
280280
*/
281281
static getThemeDirectory(): string {
282-
return Path.dirname(require.resolve('@gerrit0/typedoc-default-themes'));
282+
return Path.dirname(require.resolve('typedoc-default-themes'));
283283
}
284284

285285
/**

src/test/converter.test.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ describe('Converter', function() {
6868
target: 'ES5',
6969
module: 'CommonJS',
7070
experimentalDecorators: true,
71-
jsx: 'react',
72-
name: 'typedoc'
71+
jsx: 'react'
7372
});
7473
});
7574

@@ -113,8 +112,7 @@ describe('Converter with categorizeByGroup=false', function() {
113112
module: 'CommonJS',
114113
experimentalDecorators: true,
115114
categorizeByGroup: false,
116-
jsx: 'react',
117-
name: 'typedoc'
115+
jsx: 'react'
118116
});
119117
});
120118

@@ -168,8 +166,7 @@ describe('Converter with excludeNotExported=true', function() {
168166
module: 'CommonJS',
169167
experimentalDecorators: true,
170168
excludeNotExported: true,
171-
jsx: 'react',
172-
name: 'typedoc'
169+
jsx: 'react'
173170
});
174171
});
175172

src/test/renderer.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ describe('Renderer', function() {
6161
target: 'ES5',
6262
readme: Path.join(src, '..', 'README.md'),
6363
module: 'CommonJS',
64-
gaSite: 'foo.com', // verify theme option without modifying output
65-
name: 'typedoc'
64+
gaSite: 'foo.com' // verify theme option without modifying output
6665
});
6766
});
6867

0 commit comments

Comments
 (0)