1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
name: ๐ Bug Report
description: Something went awry and you'd like to tell us about it.
labels: [tยน ๐ bug, tโธ โ
triage]
body:
- type: markdown
attributes:
value: |
โก๏ธ katchow! We ๐ issues.
๐๐ฝ Need help or tech support? Please don't open an issue!
Head to https://is.gd/rollup_chat or https://stackoverflow.com/questions/tagged/rollupjs
๐๐ฝ Is this issue related to an official plugin? Please do not open an issue here, go to the plugins repository instead: https://github.com/rollup/plugins/issues
โค๏ธ Rollup? Please consider supporting our collective:
๐ https://opencollective.com/rollup/donate
- type: input
id: version
attributes:
label: Rollup Version
placeholder: e.g. vX.Y.Z
validations:
required: true
- type: input
id: os_version
attributes:
label: Operating System (or Browser)
validations:
required: true
- type: input
id: node_version
attributes:
label: Node Version (if applicable)
validations:
required: false
- type: input
id: reproduction_link
attributes:
label: Link To Reproduction
description: |
Issues without minimal reproductions will be closed! Please provide a link to one by:
1. Using the REPL at https://rollupjs.org/repl/, or
2. Using the StackBlitz reproduction template at https://stackblitz.com/fork/rollup-repro (allows full use of all rollup options and plugins), or
3. Using the repl.it reproduction template at https://replit.com/@rollup/rollup-plugin-repro, or
4. Provide a minimal repository link (Read https://gist.github.com/Rich-Harris/88c5fc2ac6dc941b22e7996af05d70ff for instructions). These may take more time to triage than the other options.
For some bugs it this may seem like overkill but believe us, very often what seems like a "clear issue" is actually specific to some details of your setup. Having a runnable reproduction not only "proves" your bug to us but also allows us to spend all our effort fixing the bug instead of struggling to understand your issue.
validations:
required: true
- type: textarea
id: expected_behaviour
attributes:
label: Expected Behaviour
validations:
required: true
- type: textarea
id: actual_behaviour
attributes:
label: Actual Behaviour
validations:
required: true
|