fix(exports): use correct indentation for output#599
Merged
sxzz merged 3 commits intorolldown:mainfrom Nov 15, 2025
Merged
Conversation
✅ Deploy Preview for tsdown ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
commit: |
d12bba8 to
099c176
Compare
sxzz
approved these changes
Nov 15, 2025
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.
Description
Currently, when using
exports: truewith apackage.jsonthat's indented with four spaces, the outputpackage.jsonwill be indented with two spaces. This leads to unexpected diffs.This PR adds a
detectIndentationfunction tofeatures/exports.tsto detect the indentation that's used in the originalpackage.json. The returned value is then used when overwriting thepackage.jsonwith the new exports.Linked Issues
Fixes #346
Additional context
ba20fd5 already improved the auto-detection the indentation of the original
package.jsonbut only if\tis used as indent.