|
| 1 | +name: "\U0001F41E Bug report" |
| 2 | +description: Report an issue with Vite+ |
| 3 | +labels: [pending triage] |
| 4 | +type: Bug |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to fill out this bug report. |
| 10 | +
|
| 11 | + Please only file issues here if the bug is in Vite+ itself. |
| 12 | + If the bug belongs to an underlying tool, report it in that project's tracker (linked in the "Create new issue" page). |
| 13 | + - type: textarea |
| 14 | + id: bug-description |
| 15 | + attributes: |
| 16 | + label: Describe the bug |
| 17 | + description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. |
| 18 | + placeholder: I am doing ... What I expect is ... What is actually happening is ... |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + - type: input |
| 22 | + id: reproduction |
| 23 | + attributes: |
| 24 | + label: Reproduction |
| 25 | + description: Please provide a link to a minimal reproduction repository or a runnable stackblitz/sandbox. If a report is vague and has no reproduction, it may be closed. |
| 26 | + placeholder: Reproduction URL |
| 27 | + validations: |
| 28 | + required: true |
| 29 | + - type: textarea |
| 30 | + id: reproduction-steps |
| 31 | + attributes: |
| 32 | + label: Steps to reproduce |
| 33 | + description: Provide any required steps, commands, or setup details. |
| 34 | + placeholder: Run `pnpm install` followed by `vp dev` |
| 35 | + - type: textarea |
| 36 | + id: system-info |
| 37 | + attributes: |
| 38 | + label: System Info |
| 39 | + description: | |
| 40 | + Paste the full output of both commands: |
| 41 | + - `vp env current` |
| 42 | + - `vp --version` |
| 43 | + render: shell |
| 44 | + placeholder: Paste `vp env current` and `vp --version` output here |
| 45 | + validations: |
| 46 | + required: true |
| 47 | + - type: dropdown |
| 48 | + id: package-manager |
| 49 | + attributes: |
| 50 | + label: Used Package Manager |
| 51 | + description: Select the package manager used in your project |
| 52 | + options: |
| 53 | + - npm |
| 54 | + - yarn |
| 55 | + - pnpm |
| 56 | + - bun |
| 57 | + validations: |
| 58 | + required: true |
| 59 | + - type: textarea |
| 60 | + id: logs |
| 61 | + attributes: |
| 62 | + label: Logs |
| 63 | + description: | |
| 64 | + Optional when a reproduction is provided. Please copy-paste text logs instead of screenshots. |
| 65 | +
|
| 66 | + If relevant, run your command with `--debug` and include the output. |
| 67 | + render: shell |
| 68 | + - type: checkboxes |
| 69 | + id: checkboxes |
| 70 | + attributes: |
| 71 | + label: Validations |
| 72 | + description: Before submitting the issue, please confirm the following |
| 73 | + options: |
| 74 | + - label: Read the [Contributing Guidelines](https://github.com/voidzero-dev/vite-plus/blob/main/CONTRIBUTING.md). |
| 75 | + required: true |
| 76 | + - label: Check that there isn't [already an issue](https://github.com/voidzero-dev/vite-plus/issues) for the same bug. |
| 77 | + required: true |
| 78 | + - label: Confirm this is a Vite+ issue and not an upstream issue (Vite, Vitest, tsdown, Rolldown, or Oxc). |
| 79 | + required: true |
| 80 | + - label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example). |
| 81 | + required: true |
0 commit comments