-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace Bun with pnpm #306
Merged
+12,241
−67
Merged
Changes from 21 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
004ad9b
Refactor package.json to replace bun with pnpm for script commands an…
sakit0 81cc8f4
Replace bun with pnpm in CI workflows and related scripts
sakit0 61c40fe
Update CONTRIBUTING.md to replace bun with pnpm in setup instructions
sakit0 4bf10c3
Replace bun with pnpm and update test imports to use vitest
sakit0 e97b398
Remove "type" field from package.json and set package manager to pnpm…
sakit0 ceb7c4b
Add @supabase/auth-js dependency to package.json and update pnpm-lock…
sakit0 3f8695c
Refactor package.json to format trustedDependencies array
sakit0 838e31c
Merge remote-tracking branch 'upstream/main' into chore/migrate-bun-t…
sakit0 721a65f
update pnpm-lock.yaml
sakit0 c34fd84
Add pnpm workspace configuration file
sakit0 fd71a60
update pnpm-lock.yaml
sakit0 9c54833
Update biome.json to ignore additional package directory
sakit0 0fa0398
Add overrides for @supabase/auth-js to package.json
sakit0 9115cbf
Update @supabase/auth-js version to 2.64.4 and remove overrides from …
sakit0 f89842b
Refactor timeout references to use NodeJS.Timeout type
sakit0 603bf19
Add @opentelemetry/api-logs and @opentelemetry/sdk-logs dependencies …
sakit0 17ed60e
fix format
sakit0 ca8d013
Add @opentelemetry/sdk-trace-base dependency to package.json and pnpm…
sakit0 c23cc6b
fix format
sakit0 250ad64
Add zod dependency to package.json and pnpm-lock.yaml
sakit0 e59a841
Add gaxios dependency to package.json and pnpm-lock.yaml
sakit0 81b86f9
fix(package): update version specifiers to remove caret (^) for consi…
sakit0 2675db8
Add new dependency decision for MIT-0 license in dependency_decisions…
sakit0 7641944
fix(dependency_decisions): update MIT-0 license entry for clarity and…
sakit0 7f12b1c
fix(dependency_decisions): remove quotes around MIT-0 license for con…
sakit0 9e1ecb0
Merge remote-tracking branch 'upstream/main' into chore/migrate-bun-t…
sakit0 95f2964
Add cookie override to package.json
sakit0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,9 @@ jobs: | |
uses: biomejs/[email protected] | ||
with: | ||
version: 1.9.4 | ||
- uses: oven-sh/setup-bun@v2 | ||
- run: bun install | ||
- uses: pnpm/action-setup@v4 | ||
- run: pnpm install | ||
- name: Run Biome | ||
run: biome ci . | ||
- name: Test | ||
run: bun test --coverage | ||
run: pnpm test --coverage |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
app/(playground)/p/[agentId]/prev/beta-proto/flow/utils.test.ts
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,17 @@ | |
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"predev": "bun prepare-font.js", | ||
"predev": "node prepare-font.js", | ||
"dev": "SENTRY_SUPPRESS_TURBOPACK_WARNING=1 next dev --turbopack", | ||
"dev-debug": "LOGLEVEL=debug bun run dev", | ||
"dev-debug": "LOGLEVEL=debug pnpm run dev", | ||
"prebuild": "node prepare-font.js", | ||
"build": "next build", | ||
"start": "next start", | ||
"check": "bunx @biomejs/biome check --write .", | ||
"lint": "next lint" | ||
"check": "pnpm dlx @biomejs/biome check --write .", | ||
"lint": "next lint", | ||
"test": "vitest" | ||
}, | ||
"packageManager": "[email protected]", | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
"@ai-sdk/anthropic": "1.0.5", | ||
"@ai-sdk/google": "1.0.10", | ||
|
@@ -27,11 +28,14 @@ | |
"@octokit/request-error": "6.1.5", | ||
"@octokit/webhooks": "13.3.0", | ||
"@opentelemetry/api": "1.9.0", | ||
"@opentelemetry/api-logs": "^0.57.1", | ||
"@opentelemetry/exporter-logs-otlp-http": "0.54.2", | ||
"@opentelemetry/exporter-metrics-otlp-http": "0.52.1", | ||
"@opentelemetry/resources": "1.30.0", | ||
"@opentelemetry/sdk-logs": "^0.57.1", | ||
"@opentelemetry/sdk-metrics": "1.24.1", | ||
"@opentelemetry/sdk-node": "0.51.1", | ||
"@opentelemetry/sdk-trace-base": "^1.30.1", | ||
"@opentelemetry/semantic-conventions": "1.28.0", | ||
"@paralleldrive/cuid2": "2.2.2", | ||
"@radix-ui/react-accordion": "1.2.2", | ||
|
@@ -51,6 +55,7 @@ | |
"@radix-ui/react-tooltip": "1.1.4", | ||
"@sentry/nextjs": "8.34.0", | ||
"@sentry/wizard": "3.38.0", | ||
"@supabase/auth-js": "2.64.4", | ||
"@supabase/ssr": "0.4.0", | ||
"@supabase/supabase-js": "2.45.0", | ||
"@valibot/to-json-schema": "1.0.0-beta.3", | ||
|
@@ -69,6 +74,7 @@ | |
"cva": "1.0.0-beta.1", | ||
"drizzle-orm": "0.32.1", | ||
"framer-motion": "12.0.0-alpha.0", | ||
"gaxios": "^6.7.1", | ||
"google-auth-library": "9.15.0", | ||
"googleapis": "144.0.0", | ||
"handlebars": "4.7.8", | ||
|
@@ -93,24 +99,27 @@ | |
"tiny-invariant": "1.3.3", | ||
"ts-pattern": "5.2.0", | ||
"unstructured-client": "0.18.1", | ||
"valibot": "0.37.0" | ||
"valibot": "0.37.0", | ||
"zod": "3.24.1" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4", | ||
"@octokit/openapi-types": "22.2.0", | ||
"@octokit/webhooks-types": "7.6.1", | ||
"@radix-ui/react-hover-card": "1.1.2", | ||
"@tailwindcss/typography": "0.5.15", | ||
"@types/bun": "1.1.13", | ||
"@types/node": "22.10.5", | ||
"@types/react": "19.0.4", | ||
"@types/react-dom": "19.0.2", | ||
"@vitest/coverage-v8": "2.1.8", | ||
"drizzle-kit": "0.23.0", | ||
"pino-pretty": "13.0.0", | ||
"postcss": "8.4.49", | ||
"tailwindcss": "3.4.17", | ||
"turbo": "2.0.9", | ||
"typescript": "5.6.2" | ||
"typescript": "5.6.2", | ||
"vite-tsconfig-paths": "^5.1.4", | ||
"vitest": "^2.1.8" | ||
}, | ||
"trustedDependencies": ["@sentry/cli"] | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sakit0 We have stopped using
^
in this issue #293, so please make the necessary adjustments accordingly!There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix!!
81b86f9