From 57d011e277bb46417ab6515d63242db02c93604b Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Tue, 14 Jun 2022 11:32:31 -0700 Subject: [PATCH] disable jsdoc for now to fix build error in LUME super-module's GitHub Actions. TODO: Switch to better-docs! https://github.com/SoftwareBrothers/better-docs/issues/218 --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4ba657b..667feee 100644 --- a/package.json +++ b/package.json @@ -31,8 +31,6 @@ "chai": "^4.2.0", "codecov": "^3.5.0", "istanbul": "^0.4.5", - "jsdoc": "3.6.1", - "jsdoc-to-markdown": "^5.0.0", "mocha": "^6.2.0", "prettier": "^2.3.0", "rimraf": "^3.0.2", @@ -41,6 +39,11 @@ "tslint": "^5.18.0", "typescript": "^3.5.3" }, + "// TODO for now we disabled jsdoc because it causes an error in LUME super-module's GitHub Actions": "", + "devDependenciesDisabled": { + "jsdoc": "3.6.1", + "jsdoc-to-markdown": "^5.0.0" + }, "scripts": { "build": "tsc && tsc -t es6 --outDir tmp/es && rollup -c", "clean": "rimraf lib/ es/ tmp/",