chore: package maintenance - #3
Merged
Merged
Conversation
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.
Summary
antelopeJsfield to package.json (empty object for consistency across interface-* repos)./*andtypesVersionswildcard) to hide internal dist paths from consumers@antelopejs/interface-coredependency to^0.0.3Test plan
pnpm run buildpnpm run lintGreptile Summary
This maintenance PR removes wildcard subpath exports (
./*andtypesVersions) to hide internaldistpaths from consumers, bumps@antelopejs/interface-coreto^0.0.3, and adds an emptyantelopeJsfield for cross-repo consistency. The lock file is updated accordingly, with a transitivedefuupgrade from6.1.4→6.1.7pulled in through the new interface-core version.Confidence Score: 5/5
Safe to merge — changes are intentional and well-described, with no logic or security concerns.
All changes are non-breaking at the code level (package is pre-1.0, and subpath removal is intentional), the dependency bump is a minor patch, and the lock file reflects expected transitive updates. No P0/P1 findings.
No files require special attention
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[Consumer imports package] --> B{Subpath used?} B -- "No (root import)" --> C["Resolved via '.' export\n./dist/index.js"] B -- "Yes (e.g. /utils)" --> D_old["Before PR: resolved via './*'\n./dist/*.js"] B -- "Yes (e.g. /utils)" --> D_new["After PR: resolution fails\n(no wildcard export)"] C --> E[Works] D_old --> F[Works — internal paths exposed] D_new --> G[Import error — internal paths hidden]Reviews (1): Last reviewed commit: "chore: bump @antelopejs/interface-core t..." | Re-trigger Greptile