summaryrefslogtreecommitdiffhomepage
path: root/typedoc-plugin-external-module-name/index.js
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-05-29 15:15:28 -0700
committerMatthew Miller <matthew@millerti.me>2020-05-29 15:15:28 -0700
commit94da8b7e7750c6c61526975aad302d5ac4e2d063 (patch)
tree6be2adb04bcd318517453a66be1a00e4660e99b8 /typedoc-plugin-external-module-name/index.js
parent2df680164690e5b87bbc581280c22cb54577a923 (diff)
Temporarily host a modified typedoc plugin
Diffstat (limited to 'typedoc-plugin-external-module-name/index.js')
-rw-r--r--typedoc-plugin-external-module-name/index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/typedoc-plugin-external-module-name/index.js b/typedoc-plugin-external-module-name/index.js
new file mode 100644
index 0000000..5b93a8b
--- /dev/null
+++ b/typedoc-plugin-external-module-name/index.js
@@ -0,0 +1,6 @@
+/* eslint-disable @typescript-eslint/no-var-requires */
+var plugin = require('./typedoc-plugin-external-module-name');
+module.exports = function(PluginHost) {
+ var app = PluginHost.owner;
+ app.converter.addComponent('external-module-name', plugin.ExternalModuleNamePlugin);
+};