From 7e8b6e347b5f485904087bafee87cd8717d62302 Mon Sep 17 00:00:00 2001 From: Daniel O'Grady Date: Thu, 13 Jul 2023 10:20:55 +0200 Subject: [PATCH] Remove debug output from npm script --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 274c5075..ebfb6774 100644 --- a/package.json +++ b/package.json @@ -21,10 +21,10 @@ "doc:clean": "rm -rf ./doc", "doc:prepare": "npm run doc:clean && mkdir -p doc/types", "doc:typegen": "./node_modules/.bin/tsc ./lib/*.js --skipLibCheck --declaration --allowJs --emitDeclarationOnly --outDir doc/types && cd doc/types && tsc --init", - "doc:html": "npm run doc:typegen && echo 'FILES' && ./node_modules/.bin/typedoc 'doc/types/**/*.d.ts' --entryPointStrategy expand --out doc/html --tsconfig doc/types/tsconfig.json", + "doc:html": "npm run doc:typegen && ./node_modules/.bin/typedoc 'doc/types/**/*.d.ts' --entryPointStrategy expand --out doc/html --tsconfig doc/types/tsconfig.json", "doc:cli": "npm run cli -- --help > ./doc/cli.txt", "doc:full": "npm run doc:prepare && npm run doc:html && npm run doc:cli", - "doc:gh-pages": "npm run doc:full && cp -r doc/html ." + "doc:gh-pages": "npm run doc:full && cp -r doc/html/* ." }, "files": [ "lib/",