From 9dd3163a4a5f6d63bc91f5f81910c995d641a7a9 Mon Sep 17 00:00:00 2001 From: Huan LI Date: Sun, 27 May 2018 20:15:13 +0800 Subject: [PATCH] add typedoc --- scripts/typedoc.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 scripts/typedoc.sh diff --git a/scripts/typedoc.sh b/scripts/typedoc.sh new file mode 100755 index 00000000..a2cbb219 --- /dev/null +++ b/scripts/typedoc.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -e + +typedoc \ + --includeDeclarations \ + --externalPattern **/lib/** \ + --mode file \ + --name "Wechaty Documentation" \ + --out dist/docs/ \ + src/ -- GitLab