From 440eb48654b98a06ee4e467463f4e2d4f55b1a93 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Mon, 20 Jan 2020 15:06:11 +0100 Subject: [PATCH] Prevent jsdoc upgrade pbts currently doesn't work with jsdoc 3.6.x and will emit broken definitions when trying to use it. As the toplevel package-lock.json is not respected by `npm install` as executed by the CLI utils, fix the jsdoc version to 3.5.5 in package.json. Fixes #1342 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7a322cc72..8973cc784 100644 --- a/package.json +++ b/package.json @@ -77,7 +77,7 @@ "gulp-uglify": "^3.0.0", "istanbul": "^0.4.5", "jaguarjs-jsdoc": "github:dcodeIO/jaguarjs-jsdoc", - "jsdoc": "^3.5.5", + "jsdoc": "3.5.5", "minimist": "^1.2.0", "reflect-metadata": "^0.1.12", "semver": "^5.5.0",