|
| 1 | +name: "\U0001F41E Bug report" |
| 2 | +description: Report an issue with a plugin in this repository |
| 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 | + - type: checkboxes |
| 11 | + id: plugins |
| 12 | + attributes: |
| 13 | + label: Related plugins |
| 14 | + description: Select the plugin which is related |
| 15 | + options: |
| 16 | + - label: | |
| 17 | + [plugin-babel](https://github.com/rolldown/plugins/tree/main/packages/babel) |
| 18 | + - label: | |
| 19 | + [plugin-emotion](https://github.com/rolldown/plugins/tree/main/packages/emotion) |
| 20 | + - type: textarea |
| 21 | + id: bug-description |
| 22 | + attributes: |
| 23 | + label: Describe the bug |
| 24 | + 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. Thanks! |
| 25 | + placeholder: I am doing ... What I expect is ... What actually happening is ... |
| 26 | + validations: |
| 27 | + required: true |
| 28 | + - type: input |
| 29 | + id: reproduction |
| 30 | + attributes: |
| 31 | + label: Reproduction |
| 32 | + description: Please provide a link via [vite.new](https://vite.new/) or [Rolldown's stackblitz template](https://stackblitz.com/fork/github/rolldown/rolldown-starter-stackblitz) or a link to a repo that can reproduce the problem you ran into. `npm create vite@latest` and `npm create vite-extra@latest` (for SSR or library repros) can be used as a starter template. A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is required ([Why?](https://antfu.me/posts/why-reproductions-are-required)). If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided after 3 days, it will be auto-closed. |
| 33 | + placeholder: Reproduction URL |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + - type: textarea |
| 37 | + id: reproduction-steps |
| 38 | + attributes: |
| 39 | + label: Steps to reproduce |
| 40 | + description: Please provide any reproduction steps that may need to be described. E.g. if it happens only when running the dev or build script make sure it's clear which one to use. |
| 41 | + placeholder: Run `npm install` followed by `npm run dev` |
| 42 | + - type: textarea |
| 43 | + id: system-info |
| 44 | + attributes: |
| 45 | + label: System Info |
| 46 | + description: Output of `npx envinfo --system --npmPackages '{rolldown,@rolldown/*,vite,@vitejs/*}' --binaries --browsers` |
| 47 | + render: shell |
| 48 | + placeholder: System, Binaries, Browsers |
| 49 | + validations: |
| 50 | + required: true |
| 51 | + - type: dropdown |
| 52 | + id: package-manager |
| 53 | + attributes: |
| 54 | + label: Used Package Manager |
| 55 | + description: Select the used package manager |
| 56 | + options: |
| 57 | + - npm |
| 58 | + - yarn |
| 59 | + - pnpm |
| 60 | + - bun |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + - type: checkboxes |
| 64 | + id: checkboxes |
| 65 | + attributes: |
| 66 | + label: Validations |
| 67 | + description: Before submitting the issue, please make sure you do the following |
| 68 | + options: |
| 69 | + - label: Follow our [Code of Conduct](https://github.com/rolldown/.github/blob/main/CODE_OF_CONDUCT.md) |
| 70 | + required: true |
| 71 | + - label: Check that there isn't [already an issue](https://github.com/rolldown/plugins/issues) that reports the same bug to avoid creating a duplicate. |
| 72 | + required: true |
| 73 | + - label: Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/rolldown/plugins/discussions). |
| 74 | + required: true |
| 75 | + - label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug. |
| 76 | + required: true |
0 commit comments