From 943abdc6d53d10abd2daf5b1ecec1ee422551d29 Mon Sep 17 00:00:00 2001 From: Matthew Amato Date: Mon, 10 Jul 2017 16:10:59 -0400 Subject: [PATCH] Fix jsDoc Apparently the paths to plugins/templates were "fixed" in the latest version of jsDoc, which means our paths were now wrong and needed to be updated. --- Tools/jsdoc/conf.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/jsdoc/conf.json b/Tools/jsdoc/conf.json index ea37b973f97..e8fbccf885c 100644 --- a/Tools/jsdoc/conf.json +++ b/Tools/jsdoc/conf.json @@ -8,7 +8,7 @@ "includePattern": ".+\\.js(doc)?$", "excludePattern": "(^|\\/|\\\\)_" }, - "plugins": ["cesiumTags"], + "plugins": ["./Tools/jsdoc/cesiumTags"], "templates": { "cleverLinks": true, "default": { @@ -18,7 +18,7 @@ }, "opts": { "destination": "Build/Documentation", - "template": "cesium_template", + "template": "./Tools/jsdoc/cesium_template", "recurse": true } -} \ No newline at end of file +}