feat(turbo): added turborepo, tailwind v3#1458
Merged
waleedlatif1 merged 1 commit intostagingfrom Sep 26, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Greptile Overview
Summary
This PR enables Turbopack bundling for production builds and removes the @azure/storage-blob package from the serverExternalPackages configuration. The changes are straightforward and focused on build optimization.
Key changes:
- Added
--turbopackflag to the build script inpackage.jsonto enable faster production builds - Removed
@azure/storage-blobfromserverExternalPackagesinnext.config.ts, allowing Turbo to optimize this dependency - Lock file updates reflect dependency resolution changes and cleanup of unused nested dependencies
Confidence Score: 5/5
- This PR is safe to merge with minimal risk
- The changes are minimal, well-scoped build optimizations that don't affect application logic. Enabling Turbopack and removing unused external package restrictions are low-risk changes that should improve build performance
- No files require special attention
Important Files Changed
File Analysis
| Filename | Score | Overview |
|---|---|---|
| apps/sim/next.config.ts | 4/5 | Removed '@azure/storage-blob' from serverExternalPackages array, which aligns with Turbo optimization goals |
| apps/sim/package.json | 5/5 | Added --turbopack flag to build script to enable Turbo for production builds |
| bun.lock | 5/5 | Lock file updates reflecting dependency resolution changes, with version downgrades for statuses package and cleanup of unused dependencies |
Sequence Diagram
sequenceDiagram
participant Dev as Developer
participant Next as Next.js
participant Turbo as Turbopack
participant Deps as Dependencies
Dev->>+Next: npm run build
Next->>+Turbo: Enable --turbopack flag
Turbo->>Turbo: Initialize bundling with Turbo
Turbo->>Deps: Load external packages
Note over Turbo,Deps: '@azure/storage-blob' removed<br/>from serverExternalPackages
Turbo->>Turbo: Optimize build process
Turbo-->>-Next: Optimized bundle
Next-->>-Dev: Faster build completion
2 files reviewed, no comments
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
added turborepo, tailwind v3
Type of Change
Testing
N/A
Checklist