Skip to content
This repository has been archived by the owner on Aug 14, 2021. It is now read-only.

Commit

Permalink
fix: I forgot to save a file
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Jan 1, 2020
1 parent dc8a679 commit 4f2c0f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "typedoc-default-themes",
"description": "Default themes for TypeDoc.",
"version": "0.7.0-1",
"version": "0.7.0-2",
"homepage": "https://typedoc.org/",
"main": "bin/plugin.js",
"files": [
Expand Down
4 changes: 3 additions & 1 deletion src/default/partials/member.reference.hbs
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{{#with getTargetReflectionDeep}}
{{#with tryGetTargetReflectionDeep}}
{{#ifCond ../name '===' name}}
Re-exports <a href="{{relativeURL url}}">{{name}}</a>
{{else if flags.isExported}}
Renames and re-exports <a href="{{relativeURL url}}">{{name}}</a>
{{else}}
Renames and exports <a href="{{relativeURL url}}">{{name}}</a>
{{/ifCond}}
{{else}}
Re-exports {{name}}
{{/with}}

0 comments on commit 4f2c0f7

Please sign in to comment.