Conversation
Contributor
There was a problem hiding this comment.
Greptile Overview
Greptile Summary
Standardized twenty-sdk dependency declarations across all Twenty apps and CLI templates to use semver ranges (^0.0.3) and ensured all apps have the required dependency.
Key changes:
- Added missing
twenty-sdk^0.0.3 dependency to 6 apps that were importing from it but lacked the declaration - Standardized existing
twenty-sdkdeclarations from exact version (0.0.3) to caret range (^0.0.3) in 5 packages - Updated
twenty-sdkfrom ^0.0.2 to ^0.0.3 in ai-meeting-transcript - Added missing
@types/node^24.7.2 devDependency to 5 apps for TypeScript support - Upgraded
@types/nodefrom ^20.0.0 to ^24.7.2 in meeting-transcript for consistency
Confidence Score: 5/5
- Safe to merge - critical dependency fixes with no breaking changes
- All changes are straightforward dependency updates that fix missing runtime dependencies and standardize version ranges using proper semver conventions. The apps were already importing from
twenty-sdkin theirapplication.config.tsfiles but lacked the dependency declaration, which would cause runtime errors. - No files require special attention
Important Files Changed
File Analysis
| Filename | Score | Overview |
|---|---|---|
| packages/twenty-apps/hacktoberfest-2025/last-email-interaction/package.json | 5/5 | Added missing twenty-sdk ^0.0.3 and @types/node ^24.7.2 dependencies |
| packages/twenty-apps/hacktoberfest-2025/linkedin-browser-extension/application/package.json | 5/5 | Added missing twenty-sdk ^0.0.3 dependency |
| packages/twenty-apps/hacktoberfest-2025/mailchimp-synchronizer/package.json | 5/5 | Added missing twenty-sdk ^0.0.3 and @types/node ^24.7.2 dependencies |
| packages/twenty-apps/hacktoberfest-2025/meeting-transcript/package.json | 5/5 | Added missing twenty-sdk ^0.0.3, updated @types/node from ^20.0.0 to ^24.7.2 |
| packages/twenty-apps/hacktoberfest-2025/rollup-engine/package.json | 5/5 | Added missing twenty-sdk ^0.0.3 and @types/node ^24.7.2 dependencies |
| packages/twenty-apps/hacktoberfest-2025/stripe-synchronizer/package.json | 5/5 | Added missing twenty-sdk ^0.0.3 and @types/node ^24.7.2 dependencies |
Sequence Diagram
sequenceDiagram
participant Dev as Developer
participant Apps as Twenty Apps
participant SDK as twenty-sdk@0.0.3
participant Types as @types/node@24.7.2
Note over Dev,Types: PR #15617: Fix Dependencies
Dev->>Apps: Update package.json files
rect rgb(200, 220, 240)
Note over Apps,SDK: Fix Missing Dependencies (6 apps)
Apps->>SDK: Add "twenty-sdk": "^0.0.3"
Apps->>Types: Add "@types/node": "^24.7.2"
end
rect rgb(220, 240, 200)
Note over Apps,SDK: Standardize Semver Ranges (5 apps)
Apps->>SDK: Change "0.0.3" → "^0.0.3"
end
rect rgb(240, 220, 200)
Note over Apps,SDK: Version Updates
Apps->>SDK: Update "^0.0.2" → "^0.0.3"
Apps->>Types: Update "^20.0.0" → "^24.7.2"
end
Note over Apps,Types: All apps now have consistent dependencies
12 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.
As title