|
| 1 | +name: 🐛 Bug Report |
| 2 | +description: Report an issue that should be fixed |
| 3 | +labels: [bug] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Thank you for submitting a bug report. It helps make Elysia.JS better. |
| 9 | +
|
| 10 | + If you need help or support using Elysia.JS, and are not reporting a bug, please |
| 11 | + head over to Q&A discussions [Discussions](https://github.com/elysiajs/elysia/discussions/categories/q-a), where you can ask questions in the Q&A forum. |
| 12 | +
|
| 13 | + Make sure you are running the version of Elysia.JS and Bun.Sh |
| 14 | + The bug you are experiencing may already have been fixed. |
| 15 | +
|
| 16 | + Please try to include as much information as possible. |
| 17 | +
|
| 18 | + - type: input |
| 19 | + attributes: |
| 20 | + label: What version of Elysia is running? |
| 21 | + description: Copy the output of `Elysia --revision` |
| 22 | + - type: input |
| 23 | + attributes: |
| 24 | + label: What platform is your computer? |
| 25 | + description: | |
| 26 | + For MacOS and Linux: copy the output of `uname -mprs` |
| 27 | + For Windows: copy the output of `"$([Environment]::OSVersion | ForEach-Object VersionString) $(if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" })"` in the PowerShell console |
| 28 | + - type: textarea |
| 29 | + attributes: |
| 30 | + label: What steps can reproduce the bug? |
| 31 | + description: Explain the bug and provide a code snippet that can reproduce it. |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + - type: textarea |
| 35 | + attributes: |
| 36 | + label: What is the expected behavior? |
| 37 | + description: If possible, please provide text instead of a screenshot. |
| 38 | + - type: textarea |
| 39 | + attributes: |
| 40 | + label: What do you see instead? |
| 41 | + description: If possible, please provide text instead of a screenshot. |
| 42 | + - type: textarea |
| 43 | + attributes: |
| 44 | + label: Additional information |
| 45 | + description: Is there anything else you think we should know? |
| 46 | + - type: input |
| 47 | + attributes: |
| 48 | + label: Have you try removing the `node_modules` and `bun.lockb` and try again yet? |
| 49 | + description: rm -rf node_modules && bun.lockb |
0 commit comments