Skip to content

Commit

Permalink
Remove debug output from npm script
Browse files Browse the repository at this point in the history
  • Loading branch information
daogrady committed Jul 13, 2023
1 parent 98d16d0 commit 7e8b6e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
Expand Down

0 comments on commit 7e8b6e3

Please sign in to comment.