Add support/regression issue templates [skip ci] (#7851)
This commit is contained in:
parent
39d07638cf
commit
9c1b3e8dc1
59
.github/ISSUE_TEMPLATE.md
vendored
59
.github/ISSUE_TEMPLATE.md
vendored
@ -1,63 +1,6 @@
|
|||||||
<!---
|
<!---
|
||||||
Thanks for filing an issue 😄 ! Before you submit, please read the following:
|
Thanks for filing an issue 😄 ! Before you submit, please read the following:
|
||||||
|
|
||||||
|
Check the other issue templates if you are trying to submit a bug report, feature request, or question
|
||||||
Search open/closed issues before submitting since someone might have asked the same thing before!
|
Search open/closed issues before submitting since someone might have asked the same thing before!
|
||||||
|
|
||||||
If you have a support request or question please submit them to one of this resources:
|
|
||||||
|
|
||||||
* Slack Community: https://babeljs.slack.com (you can sign-up at https://slack.babeljs.io/ for an invite)
|
|
||||||
* StackOverflow: https://stackoverflow.com/questions/tagged/babeljs using the tag `babeljs`
|
|
||||||
* Also have a look at the readme for more information on how to get support:
|
|
||||||
https://github.com/babel/babel/blob/master/README.md
|
|
||||||
|
|
||||||
Issues on GitHub are only related to problems of Babel itself and we cannot answer
|
|
||||||
support questions here.
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
Choose one: is this a bug report or feature request?
|
|
||||||
|
|
||||||
<!--- Provide a general summary of the issue in the title above -->
|
|
||||||
|
|
||||||
### Input Code
|
|
||||||
<!--- If you're describing a bug, please let us know which sample code reproduces your problem -->
|
|
||||||
<!--- If you have link to our REPL or a standalone repo please link that! -->
|
|
||||||
|
|
||||||
```js
|
|
||||||
var your => (code) => here;
|
|
||||||
```
|
|
||||||
|
|
||||||
### Babel/Babylon Configuration (.babelrc, package.json, cli command)
|
|
||||||
<!--- If describing a bug, tell us what your babel configuration looks like -->
|
|
||||||
|
|
||||||
```js
|
|
||||||
{
|
|
||||||
"your": { "config": "here" }
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Expected Behavior
|
|
||||||
<!--- If you're describing a bug, tell us what should happen -->
|
|
||||||
<!--- If you're suggesting a change/improvement, tell us how it should work -->
|
|
||||||
|
|
||||||
### Current Behavior
|
|
||||||
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
|
|
||||||
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
|
|
||||||
|
|
||||||
### Possible Solution
|
|
||||||
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
|
|
||||||
<!--- or ideas how to implement the addition or change -->
|
|
||||||
|
|
||||||
### Context
|
|
||||||
<!--- How has this issue affected you? What are you trying to accomplish? -->
|
|
||||||
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
|
|
||||||
|
|
||||||
### Your Environment
|
|
||||||
<!--- Include as many relevant details about the environment you experienced the bug in -->
|
|
||||||
|
|
||||||
| software | version(s)
|
|
||||||
| ---------------- | -------
|
|
||||||
| Babel |
|
|
||||||
| Babylon | <!-- This is only needed if you are using Babylon directly -->
|
|
||||||
| node |
|
|
||||||
| npm |
|
|
||||||
| Operating System |
|
|
||||||
|
|||||||
6
.github/ISSUE_TEMPLATE/Bug_report.md
vendored
6
.github/ISSUE_TEMPLATE/Bug_report.md
vendored
@ -14,8 +14,7 @@ A clear and concise description of what the bug is.
|
|||||||
var your => (code) => here;
|
var your => (code) => here;
|
||||||
```
|
```
|
||||||
|
|
||||||
### Babel/Babylon Configuration (.babelrc, package.json, cli command)
|
### Babel Configuration (.babelrc, package.json, cli command)
|
||||||
<!--- If describing a bug, tell us what your babel configuration looks like -->
|
|
||||||
|
|
||||||
```js
|
```js
|
||||||
{
|
{
|
||||||
@ -27,8 +26,7 @@ var your => (code) => here;
|
|||||||
A clear and concise description of what you expected to happen (or code).
|
A clear and concise description of what you expected to happen (or code).
|
||||||
|
|
||||||
**Possible Solution**
|
**Possible Solution**
|
||||||
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
|
<!--- Only if you have suggestions on a fix/reason for the bug -->
|
||||||
<!--- or ideas how to implement the addition or change -->
|
|
||||||
|
|
||||||
**Environment**
|
**Environment**
|
||||||
- Babel version(s): [e.g. v6.0.0, v7.0.0-beta.34]
|
- Babel version(s): [e.g. v6.0.0, v7.0.0-beta.34]
|
||||||
|
|||||||
36
.github/ISSUE_TEMPLATE/Regression-v7.md
vendored
Normal file
36
.github/ISSUE_TEMPLATE/Regression-v7.md
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
name: v7 Regression
|
||||||
|
about: Report a regression in v7 from v6
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Potential Commit/PR that introduced the regression**
|
||||||
|
If you have time to investigate, what PR/date introduced this issue.
|
||||||
|
|
||||||
|
**Describe the regression**
|
||||||
|
A clear and concise description of what the regression is.
|
||||||
|
|
||||||
|
**Input Code**
|
||||||
|
<!--- If you have link to our REPL or a standalone repo please link that! -->
|
||||||
|
|
||||||
|
```js
|
||||||
|
var your => (code) => here;
|
||||||
|
```
|
||||||
|
|
||||||
|
### Babel Configuration (.babelrc, package.json, cli command)
|
||||||
|
|
||||||
|
```js
|
||||||
|
{
|
||||||
|
"your": { "config": "here" }
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
**Expected behavior/code**
|
||||||
|
A clear and concise description of what you expected to happen (or code).
|
||||||
|
|
||||||
|
**Environment**
|
||||||
|
- Babel version(s): [e.g. v6.0.0, v7.0.0-beta.34]
|
||||||
|
- Node/npm version: [e.g. Node 8/npm 5]
|
||||||
|
- OS: [e.g. OSX 10.13.4, Windows 10]
|
||||||
|
- Monorepo [e.g. yes/no/Lerna]
|
||||||
|
- How you are using Babel: [e.g. `cli`, `register`, `loader`]
|
||||||
16
.github/ISSUE_TEMPLATE/Support.md
vendored
Normal file
16
.github/ISSUE_TEMPLATE/Support.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
name: Support Question
|
||||||
|
about: If you have a support question, please check out our Slack or StackOverflow
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
If you have a support request or question please submit them to one of this resources:
|
||||||
|
|
||||||
|
* Slack Community Chat: https://babeljs.slack.com (you can sign-up at https://slack.babeljs.io/ for an invite)
|
||||||
|
* StackOverflow: https://stackoverflow.com/questions/tagged/babeljs using the tag `babeljs`
|
||||||
|
* Twitter: If it's just a quick question you can ping our Twitter: https://twitter.com/babeljs
|
||||||
|
* Also have a look at the readme for more information on how to get support:
|
||||||
|
https://github.com/babel/babel/blob/master/README.md
|
||||||
|
|
||||||
|
Issues on GitHub are intended to be related to problems of Babel itself,
|
||||||
|
so we try not to answer support questions here.
|
||||||
Loading…
x
Reference in New Issue
Block a user