From 0e27a5d599dfb968206834342c770723bba23e7e Mon Sep 17 00:00:00 2001 From: boyska Date: Sun, 30 Jan 2022 14:41:45 +0100 Subject: [PATCH] avoid date in output --- jsdoc.conf.json | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/jsdoc.conf.json b/jsdoc.conf.json index e063683..f8fc401 100644 --- a/jsdoc.conf.json +++ b/jsdoc.conf.json @@ -5,6 +5,11 @@ "encoding": "utf8", "destination": "./docs" }, + "templates": { + "default": { + "includeDate": false + } + }, "docdash": { "static": true, "sort": true, diff --git a/package.json b/package.json index 1105685..7f6a328 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "test": "npm run test:node && npm run test:browser", "test:node": "mocha", "test:browser": "karma start --single-run --browsers ChromeHeadless,FirefoxHeadless karma.config.js", - "docs": "jsdoc -c ./jsdoc.conf.json --tutorials doc/tutorials/ --package ./package.json . doc/home.md", + "docs": "TZ=UTC jsdoc -c ./jsdoc.conf.json --tutorials doc/tutorials/ --package ./package.json . doc/home.md", "build": "webpack" }, "author": "",