From 7b360d9f4daf33ce33c1d43d4b8e97c0a4ed6062 Mon Sep 17 00:00:00 2001 From: Max Hoffmann Date: Mon, 15 Jan 2018 19:16:08 -0500 Subject: [PATCH] Rename esdoc config --- .esdoc.json | 8 -------- esdoc.json | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 8 deletions(-) delete mode 100644 .esdoc.json create mode 100644 esdoc.json diff --git a/.esdoc.json b/.esdoc.json deleted file mode 100644 index 9344f5ea..00000000 --- a/.esdoc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "source": "./src", - "destination": "./docs", - "plugins": [ - {"name": "esdoc-standard-plugin"}, - {"name": "esdoc-ecmascript-proposal-plugin", "option": {"all": true}} - ] -} diff --git a/esdoc.json b/esdoc.json new file mode 100644 index 00000000..347aa8c2 --- /dev/null +++ b/esdoc.json @@ -0,0 +1,18 @@ +{ + "source": "./src", + "destination": "./docs", + "plugins": [ + { + "name": "esdoc-standard-plugin", + "option": { + "manual": { + "files": [ + "./src/Draggable/README.md", + "./src/Sortable/README.md" + ] + } + } + }, + {"name": "esdoc-ecmascript-proposal-plugin", "option": {"all": true}} + ] +}