chore: Added support for core v4.3.0#82
Merged
Merged
Conversation
a4d8c1a to
0b56527
Compare
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.
This pull request introduces support for the new
fromPackageJsonhelper, which builds the shared dependencies configuration from yourpackage.jsonand pre-seeds the Angular skip list. It also adds documentation and tests for the new helper, improves the handling of dense externals in i18n builds, and updates dependencies. The main changes are grouped as follows:New Features
fromPackageJsonfunction insrc/config/share-utils.tsthat wraps the core helper, pre-seeds the Angular skip list (NG_SKIP_LIST), and exposes a fluent builder API for refining shared dependency configuration. [1] [2]fromPackageJsonhelper and its API inREADME.md, including usage examples and an explanation of the skip list behavior.Dense Externals / i18n Support
translateFederationArtifactsnow collects all output filenames from dense shared entries, ensuring correct translation command generation.denseExternalsis enabled.denseExternalsfeature flag and its impact on the shape of shared externals inremoteEntry.jsoninREADME.md.Dependency Updates
@softarc/native-federationto version^4.3.0inpackage.jsonto support the new features.Testing
fromPackageJsonhelper insrc/config/share-utils.spec.ts, covering default behavior, explicit project paths, and skip list seeding. [1] [2] [3]