Skip to content

Commit

Permalink
Revert "Merge branch 'master' into master"
Browse files Browse the repository at this point in the history
This reverts commit 29df793, reversing
changes made to dc3c6f9.
  • Loading branch information
Gerrit0 committed Jun 15, 2019
1 parent 29df793 commit dfb7207
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 40 deletions.
6 changes: 0 additions & 6 deletions .github/pull.yml

This file was deleted.

Binary file modified examples/basic/media/logo-128.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 17 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "@gerrit0/typedoc",
"name": "typedoc",
"description": "Create api documentation for TypeScript projects.",
"version": "0.15.0",
"version": "0.15.0-0",
"homepage": "https://typedoc.org",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -15,7 +15,7 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/Gerrit0/TypeDoc.git"
"url": "git://github.com/TypeStrong/TypeDoc.git"
},
"bugs": {
"url": "https://github.com/TypeStrong/TypeDoc/issues"
Expand All @@ -30,7 +30,6 @@
"node": ">= 6.0.0"
},
"dependencies": {
"@gerrit0/typedoc-default-themes": "^0.6.0",
"@types/minimatch": "3.0.3",
"fs-extra": "^7.0.1",
"handlebars": "^4.1.2",
Expand All @@ -40,6 +39,7 @@
"minimatch": "^3.0.0",
"progress": "^2.0.3",
"shelljs": "^0.8.3",
"typedoc-default-themes": "^0.6.0-0",
"typescript": "3.5.x"
},
"devDependencies": {
Expand All @@ -64,7 +64,7 @@
],
"scripts": {
"pretest": "node scripts/copy_test_files.js",
"test": "nyc --reporter=html --reporter=text-summary mocha --timeout=30000 dist/test/*.test.js",
"test": "nyc --reporter=html --reporter=text-summary mocha --timeout=10000 dist/test/*.test.js",
"test:ts": "mocha --require ts-node/register --watch-extensions ts --timeout=10000 src/test/*.test.ts",
"build": "tsc --project .",
"postbuild": "node scripts/replace_application_version.js",
Expand Down
1 change: 0 additions & 1 deletion scripts/rebuild_specs.js
Expand Up @@ -16,7 +16,6 @@ const app = new TypeDoc.Application({
"lib.es2015.iterable.d.ts",
"lib.es2015.collection.d.ts"
],
name: 'typedoc'
});

const base = path.join(__dirname, '../src/test/converter');
Expand Down
2 changes: 1 addition & 1 deletion src/lib/output/renderer.ts
Expand Up @@ -279,7 +279,7 @@ export class Renderer extends ChildableComponent<Application, RendererComponent>
* @returns The path to the theme directory.
*/
static getThemeDirectory(): string {
return Path.dirname(require.resolve('@gerrit0/typedoc-default-themes'));
return Path.dirname(require.resolve('typedoc-default-themes'));
}

/**
Expand Down
9 changes: 3 additions & 6 deletions src/test/converter.test.ts
Expand Up @@ -68,8 +68,7 @@ describe('Converter', function() {
target: 'ES5',
module: 'CommonJS',
experimentalDecorators: true,
jsx: 'react',
name: 'typedoc'
jsx: 'react'
});
});

Expand Down Expand Up @@ -113,8 +112,7 @@ describe('Converter with categorizeByGroup=false', function() {
module: 'CommonJS',
experimentalDecorators: true,
categorizeByGroup: false,
jsx: 'react',
name: 'typedoc'
jsx: 'react'
});
});

Expand Down Expand Up @@ -168,8 +166,7 @@ describe('Converter with excludeNotExported=true', function() {
module: 'CommonJS',
experimentalDecorators: true,
excludeNotExported: true,
jsx: 'react',
name: 'typedoc'
jsx: 'react'
});
});

Expand Down
3 changes: 1 addition & 2 deletions src/test/renderer.test.ts
Expand Up @@ -61,8 +61,7 @@ describe('Renderer', function() {
target: 'ES5',
readme: Path.join(src, '..', 'README.md'),
module: 'CommonJS',
gaSite: 'foo.com', // verify theme option without modifying output
name: 'typedoc'
gaSite: 'foo.com' // verify theme option without modifying output
});
});

Expand Down

0 comments on commit dfb7207

Please sign in to comment.