Conversation
clavery
approved these changes
Apr 24, 2026
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.
PR Description
Why this change
@salesforce/mrt-utilitiesexposeddevelopmentexport conditions that point to./src/*, while the published package only shipsdist/*.In environments that include the
developmentcondition (for example Vite dev resolution), consumers can matchdevelopmentfirst and attempt to load non-published source files, causing module resolution failures instead of falling back toimport/require.What we changed
packages/mrt-utilities/scripts/strip-dev-exports.cjs.packages/mrt-utilities/package.json:prepack: runs the strip script to removedevelopmentkeys fromexports.postpack: restorespackage.jsonviagit checkout package.json..changeset/mrt-utilities-strip-dev-exports.md(@salesforce/mrt-utilities: patch).Existing pattern reused
This follows the same proven approach already used in
@salesforce/b2c-tooling-sdk:developmentexport conditions in source for local monorepo/dev ergonomics.distartifacts.Smoke test steps
pnpm --filter @salesforce/mrt-utilities pack --pack-destination /tmpprepackexecution andStripped "development" condition from ... export(s)/tmp/salesforce-mrt-utilities-<version>.tgz)dist/**,package.json,README.mdsrc/**files in tarballpackage.jsoninside tarball and confirmexportsentries do not includedevelopment.packages/mrt-utilities/package.jsonto verifyprepack/postpackscripts remain present).