chore: corepack migration + typedoc config + ADR-015 CI updates (P1)

This commit is contained in:
Aric Camarata 2026-05-29 07:15:57 -04:00
parent 193bd5527f
commit 71116954da
4 changed files with 474 additions and 846 deletions

1
.gitignore vendored
View file

@ -2,6 +2,7 @@ node_modules/
dist/ dist/
build/ build/
out/ out/
docs/
*.tgz *.tgz
*.tsbuildinfo *.tsbuildinfo
*.log *.log

View file

@ -38,7 +38,8 @@
"lint": "eslint .", "lint": "eslint .",
"format": "prettier --write .", "format": "prettier --write .",
"format:check": "prettier --check .", "format:check": "prettier --check .",
"coverage": "c8 --reporter=lcov --reporter=text node --test" "coverage": "c8 --reporter=lcov --reporter=text node --test",
"docs": "typedoc"
}, },
"keywords": [ "keywords": [
"hijri", "hijri",
@ -59,6 +60,7 @@
"eslint-config-prettier": "^10.1.8", "eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1", "prettier": "^3.8.1",
"tsup": "^8.0.0", "tsup": "^8.0.0",
"typedoc": "^0.28.19",
"typescript": "^5.5.0", "typescript": "^5.5.0",
"typescript-eslint": "^8.56.1" "typescript-eslint": "^8.56.1"
}, },

File diff suppressed because it is too large Load diff

11
typedoc.json Normal file
View file

@ -0,0 +1,11 @@
{
"entryPoints": ["src/index.ts"],
"out": "docs",
"name": "hijri-core",
"tsconfig": "tsconfig.json",
"readme": "none",
"skipErrorChecking": false,
"excludePrivate": true,
"excludeProtected": true,
"includeVersion": true
}