Migrate forc-node to forc monorepo#7534
Merged
Merged
Conversation
forc-node has been migrated to the forc monorepo and is now built and distributed from there. This PR removes the local code and updates CI to no longer build/test forc-node from this repo. Changes: - Delete forc-plugins/forc-node/ directory - Update CI workflow to remove forc-node from test matrix and binary loops - Update gh-pages workflow to install forc-node from forc repo - Remove unused workspace dependencies (fuel-core, fuel-core-chain-config, libp2p-identity, sha1, termion) Documentation for forc-node remains in this repo and will continue to be generated using the binary installed from the forc repo.
PR SummaryMigrates
Written by Cursor Bugbot for commit 100c694. This will update automatically on new commits. Configure here. |
forc-node to forc monorepo
kayagokalp
approved these changes
Jan 16, 2026
ironcev
approved these changes
Jan 16, 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.
Summary
This PR completes the sway-side of migrating
forc-nodeto the forc monorepo, as outlined in RFC #49.The corresponding forc repo PR: FuelLabs/forc#130
forc-nodehas already been released from the forc repo (v0.71.2).Changes
forc-nodecrate from workspaceforc-nodebinary (it's now built from forc repo)forc-nodefrom forc repo for documentation generationfuel-core,fuel-core-chain-config,libp2p-identity,sha1,termion)Distribution
Going forward,
forc-nodewill be built and distributed from the forc repo by:Documentation
Documentation for all tooling will continue to live in this repo. The
gh-pagesworkflow now pullsforc-nodefrom the forc repo rather than building it locally, so docs generation continues to work as before.