diff options
| author | Dax Raad <[email protected]> | 2025-05-30 21:56:37 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-30 21:56:37 -0400 |
| commit | 1472efcbfe74105976c3f9234c6dd098402a13ad (patch) | |
| tree | 161ed81506428253b2a40caf105e40ef41719db2 /packages/function | |
| parent | 56a5d589454e029c691cbcd1ce6df517fd5603d2 (diff) | |
| download | opencode-1472efcbfe74105976c3f9234c6dd098402a13ad.tar.gz opencode-1472efcbfe74105976c3f9234c6dd098402a13ad.zip | |
Optimize package management with catalog and exact versions
- Add catalog feature to centralize common dependency versions
- Convert all package versions to exact (remove ^ prefixes)
- Move prettier to root package only to reduce duplication
- Configure bunfig.toml for exact dependency installs
- Improve version consistency across workspace packages
🤖 Generated with opencode
Co-Authored-By: opencode <[email protected]>
Diffstat (limited to 'packages/function')
| -rw-r--r-- | packages/function/package.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/function/package.json b/packages/function/package.json index 46c83e840..81a1edc92 100644 --- a/packages/function/package.json +++ b/packages/function/package.json @@ -5,6 +5,8 @@ "private": true, "type": "module", "devDependencies": { - "@cloudflare/workers-types": "^4.20250522.0" + "@cloudflare/workers-types": "4.20250522.0", + "typescript": "catalog:", + "@types/node": "catalog:" } } |
