[refactor] Clean up API changelog implementation

- Remove demo-snapshots folder
- Merge workflow documentation into main workflows README
- Convert scripts to TypeScript (.js → .ts)
- Revert eslint.config.ts changes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
snomiao
2025-11-10 09:35:35 +00:00
parent e36e25ebd6
commit 794829db6d
13 changed files with 227 additions and 1139 deletions

View File

@@ -441,4 +441,5 @@ function formatChange(change) {
const changes = compareApis(previousApi, currentApi)
const changelog = formatChangelog(changes, previousVersion, currentVersion)
// eslint-disable-next-line no-console
console.log(changelog)

View File

@@ -310,4 +310,5 @@ const sourceFile = ts.createSourceFile(
const apiSurface = extractApiSurface(sourceFile)
// Output as JSON
// eslint-disable-next-line no-console
console.log(JSON.stringify(apiSurface, null, 2))