-
Notifications
You must be signed in to change notification settings - Fork 22
Revert "chore: migrate to Bun package manager" #1086
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
Closed
Closed
Changes from all commits
Commits
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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,52 +1,19 @@ | ||
| # VCS | ||
| .git | ||
| .gitignore | ||
| **/.gitignore | ||
| **/.github | ||
|
|
||
| # IDE | ||
| .idea | ||
| .vscode | ||
| **/.vscode | ||
|
|
||
| # Node/Bun deps in context (use layer caching instead) | ||
| **/node_modules | ||
| node_modules | ||
|
|
||
| # Build outputs | ||
| packages/app-builder/build | ||
| **/build | ||
| **/dist | ||
|
|
||
| # Caches and tooling | ||
| **/.cache | ||
| **/.eslintcache | ||
| **/.next | ||
| **/.turbo | ||
| **/.vite | ||
| **/.github | ||
| **/.gitignore | ||
| **/.vscode | ||
| **/coverage | ||
|
|
||
| # Tests, reports, and stories | ||
| **/*.test.* | ||
| **/__tests__ | ||
| **/playwright-report | ||
| **/storybook-static | ||
| **/test-results | ||
|
|
||
| # Local and misc | ||
| .env | ||
| .env.* | ||
| **/.env | ||
| **/.aws | ||
| **/.ssh | ||
| **/.DS_Store | ||
| *.local | ||
| *.log | ||
| **/env | ||
| **/venv | ||
|
|
||
| # Project files (root) | ||
| .dockerignore | ||
| Dockerfile | ||
| Dockerfile_local | ||
| .dockerignore | ||
| README.md | ||
| docker-compose.yml | ||
| docker-compose.yml | ||
| **/.DS_Store | ||
| **/venv | ||
| **/env | ||
| **/dist | ||
| **/build |
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
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
This file was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| name: E2E tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| branches: | ||
| - main | ||
|
|
||
| jobs: | ||
| e2e: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: pnpm/action-setup@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| cache: pnpm | ||
| - run: pnpm install --frozen-lockfile | ||
| - run: pnpm --filter tests exec playwright install chromium-headless-shell | ||
| - run: pnpm --filter tests run test | ||
| - uses: actions/upload-artifact@v4 | ||
| if: ${{ !cancelled() }} | ||
| with: | ||
| name: playwright-report | ||
| path: | | ||
| packages/tests/playwright-report/ | ||
| packages/tests/trace.zip | ||
| retention-days: 1 | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,6 @@ node_modules | |
| *.launch | ||
| .settings/ | ||
| *.sublime-workspace | ||
| /.cursor/rules | ||
|
|
||
| # IDE - VSCode | ||
| .vscode/* | ||
|
|
||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| nodejs 22.18.0 | ||
| bun 1.2.21 | ||
| pnpm 10.15.0 |
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
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.
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Copilot Autofix
AI 12 months ago
To fix this, you should add an explicit
permissionsblock to the workflow YAML at the root level (to cover all jobs). The minimal starting point iscontents: read, which provides only read access to repository contents. In most test workflows, this suffices unless you are writing to issues, pull requests, packages, etc. In this workflow, none of the steps indicate a need for elevated (write) permissions, socontents: readis appropriate.Edit the file
.github/workflows/playground.yaml: insert apermissionsblock immediately after the workflowname:and before theon:block. This aligns with YAML conventions and GitHub Actions documentation. No changes to imports or other workflow definitions are required.