fix(utils): align package.json entrypoints with rslib output#4439
Merged
ScriptedAlchemy merged 6 commits intomainfrom Feb 14, 2026
Merged
fix(utils): align package.json entrypoints with rslib output#4439ScriptedAlchemy merged 6 commits intomainfrom
ScriptedAlchemy merged 6 commits intomainfrom
Conversation
🦋 Changeset detectedLatest commit: bed5071 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
✅ Deploy Preview for module-federation-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
@module-federation/devtools
@module-federation/cli
create-module-federation
@module-federation/data-prefetch
@module-federation/dts-plugin
@module-federation/enhanced
@module-federation/error-codes
@module-federation/managers
@module-federation/manifest
@module-federation/metro
@module-federation/metro-plugin-rnc-cli
@module-federation/metro-plugin-rnef
@module-federation/modern-js-v3
@module-federation/retry-plugin
@module-federation/rsbuild-plugin
@module-federation/rspack
@module-federation/rspress-plugin
@module-federation/runtime
@module-federation/runtime-core
@module-federation/runtime-tools
@module-federation/sdk
@module-federation/third-party-dts-extractor
@module-federation/treeshake-frontend
@module-federation/treeshake-server
@module-federation/webpack-bundler-runtime
@module-federation/bridge-react
@module-federation/bridge-react-webpack-plugin
@module-federation/bridge-shared
@module-federation/bridge-vue3
@module-federation/inject-external-runtime-core-plugin
commit: |
Contributor
Bundle Size Report1 package(s) changed, 37 unchanged.
Total dist: 6.66 MB (no change) |
Contributor
Android Release APK for all devicesNote: if the download link expires, please re-run the workflow to generate a new build. Generated at 2026-02-14T00:38:33.432Z UTC |
Contributor
iOS Release APP for simulatorsNote: if the download link expires, please re-run the workflow to generate a new build. Generated at 2026-02-14T00:45:17.081Z UTC |
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
This PR branches off
main, merges in #4436, and adds@module-federation/utilitiesto the existing publint CI coverage.User Impact
Consumers of
@module-federation/utilitieswere affected by broken package entrypoint metadata after the rslib bundleless output layout change. The merged fix from #4436 restores resolvable package entrypoints, and this PR adds CI guardrails so the package is validated by publint inbuild-and-test.Root Cause
packages/utilities/package.jsonstill pointed at the old flatdist/index.*layout while build outputs now live underdist/cjs,dist/esm, anddist/types. In addition, the package was explicitly excluded from the publint loop in CI, so compatibility regressions for that package were not checked there.Fix
.github/workflows/build-and-test.ymlto includepackages/utilitiesin the publint loop by removing the exclusion condition.@module-federation/utilities:.changeset/soft-spoons-divide.mdValidation
Executed locally:
pnpm -w nx run utils:buildnpx publint packages/utilitiesResult: publint completed without errors (warnings/suggestions only).