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/
build/
out/
docs/
*.tgz
*.tsbuildinfo
*.log

View file

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