From 5ebfe45a4d14c7b15fd98b752ad2edc96d5622b5 Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Sun, 8 Mar 2026 17:10:34 -0400 Subject: [PATCH] docs: fix Quick Start heading casing; ci: add CHANGELOG/LICENSE to pack-check --- .github/workflows/ci.yml | 2 ++ README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c280377..b8df123 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,6 +80,8 @@ jobs: grep -q "dist/index.d.ts" pack-output.txt || (echo "Missing dist/index.d.ts" && exit 1) grep -q "dist/index.d.mts" pack-output.txt || (echo "Missing dist/index.d.mts" && exit 1) grep -q "README.md" pack-output.txt || (echo "Missing README.md" && exit 1) + grep -q "CHANGELOG.md" pack-output.txt || (echo "Missing CHANGELOG.md" && exit 1) + grep -q "LICENSE" pack-output.txt || (echo "Missing LICENSE" && exit 1) ! grep -q "test.mjs" pack-output.txt || (echo "test.mjs should not be in pack" && exit 1) ! grep -q "node_modules" pack-output.txt || (echo "node_modules should not be in pack" && exit 1) echo "Pack contents verified." diff --git a/README.md b/README.md index e963d3f..b0a7a91 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ npx moon-sighting download-kernels This fetches `de442s.bsp` and `naif0012.tls` from NASA's NAIF server and caches them locally. The download is verified by SHA-256 checksum. -## Quick start +## Quick Start ```ts import { initKernels, getMoonSightingReport, getMoonPhase } from 'moon-sighting'