More specific files list - #7
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 112fb36865
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "dist/**/*.js", | ||
| "dist/**/*.d.ts", |
There was a problem hiding this comment.
Include the generated source maps in the package
When consumers use Node's --enable-source-maps or a debugger, the shipped bundles still contain sourceMappingURL references, but this allowlist omits every dist/*.js.map file (as confirmed by npm pack --dry-run). Runtime errors therefore fall back to stack frames in the minified, single-line bundles instead of the TypeScript sources; include the generated maps or remove the stale references and disable source-map generation.
Useful? React with 👍 / 👎.
No description provided.