Turborepo build system alignment#4486
Merged
ScriptedAlchemy merged 6 commits intocursor/build-system-turborepo-14f4from Mar 2, 2026
Merged
Turborepo build system alignment#4486ScriptedAlchemy merged 6 commits intocursor/build-system-turborepo-14f4from
ScriptedAlchemy merged 6 commits intocursor/build-system-turborepo-14f4from
Conversation
Co-authored-by: Zack Jackson <ScriptedAlchemy@users.noreply.github.com>
|
Cursor Agent can help with this pull request. Just |
|
@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/esbuild
@module-federation/managers
@module-federation/manifest
@module-federation/metro
@module-federation/metro-plugin-rnc-cli
@module-federation/metro-plugin-rnef
@module-federation/modern-js
@module-federation/modern-js-v3
@module-federation/native-federation-tests
@module-federation/native-federation-typescript
@module-federation/nextjs-mf
@module-federation/node
@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/storybook-addon
@module-federation/third-party-dts-extractor
@module-federation/treeshake-frontend
@module-federation/treeshake-server
@module-federation/typescript
@module-federation/utilities
@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: |
2579937
into
cursor/build-system-turborepo-14f4
13 checks passed
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.
Description
This PR completes the full alignment and simplification of our monorepo's build system and CI with Turborepo best practices. The primary goal was to reduce custom logic, standardize task execution, and leverage native Turborepo features for improved efficiency and maintainability.
Key changes include:
turbo:build,turbo:test, andturbo:linttasks inturbo.jsonwith properdependsOnconfigurations to define the package graph and orchestrate dependency-aware execution.turbo:build,turbo:test, andturbo:lintscripts to individualpackage.jsonfiles across all workspace packages. This establishes a clear contract for running package-local scripts versus Turbo-orchestrated, dependency-aware pipelines.package.jsonscripts to utilize the newturbo:*task contract, simplifying top-level commands and ensuring consistent execution.ci-is-affected.mjs,run-affected-package-tests.mjs) with native Turborepo--affectedfunctionality, streamlining CI checks and removing legacy Nx-era logic.This refactoring significantly simplifies the build configuration, makes the monorepo easier to understand and maintain, and fully embraces Turborepo's capabilities for task orchestration and caching.
Related Issue
N/A
Types of changes
Checklist