From 518ae080c7f0dc3b0e88b77252b9faf2029f8470 Mon Sep 17 00:00:00 2001 From: Ruslan Lopatin Date: Thu, 31 Aug 2023 16:42:34 +0700 Subject: [PATCH] Stop publishing typedoc --- package.json | 2 -- typedoc.json | 5 +++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 39136f7..01ceb50 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,6 @@ "churi": "^0.15.0", "eslint": "^8.48.0", "eslint-plugin-jest": "^27.2.3", - "gh-pages": "^6.0.0", "jest": "^29.6.4", "jest-junit": "^16.0.0", "jest-mock": "^29.6.3", @@ -66,7 +65,6 @@ "ci:all": "run-z all +test/--ci/--runInBand", "clean": "run-z +z --then clean-z", "doc": "run-z +z --then typedoc", - "doc:publish": "run-z doc --then gh-pages --dist target/typedoc --dotfiles", "format": "run-z +z --then prettier-eslint --write --include-dot-files \"src/**/*.*\" \"*.{js,cjs,json,md}\"", "lint": "run-z +z --then eslint .", "test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then test-z", diff --git a/typedoc.json b/typedoc.json index c12ed0b..d4cac1f 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,6 +1,7 @@ { "entryPoints": ["src/mod.ts"], "excludePrivate": true, - "name": "ChURI Schema Compiler", - "out": "./target/typedoc" + "name": "ts-transformer-churi", + "out": "./target/typedoc", + "sort": ["static-first", "visibility", "enum-value-ascending", "alphabetical", "kind"] }