Conversation
The build script copied the contents of `build/api/` flat into `dist/` instead of preserving the subdirectory structure. This caused `dist/index.d.ts` to reference `./api/*.ts` paths that didn't exist, breaking type resolution for consumers. Split the copy command to place `index.d.ts` and the `api/` directory separately, so `dist/api/` is created as a proper subdirectory. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
To detect packaging issues where declaration files are missing from the `dist/` directory, add a smoke test to the build process that verifies all module references in `dist/index.d.ts` resolve to existing `.d.ts` files. This will catch any missing files before publishing. The inline build command in `package.json` had grown long and hard to read after adding the declaration file copy and dist verification steps. Move the build steps into `scripts/build.sh` with each step on its own line and commented. Add `scripts/check-dist.ts` to verify that all module references in `dist/index.d.ts` resolve to existing `.d.ts` files, preventing a repeat of the 0.6.0 packaging bug. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.