Skip to content

Commit e7d4033

Browse files
committed
Merge tag 'v2.1.5'
2 parents e75a915 + 1548e39 commit e7d4033

File tree

95 files changed

+3947
-3356
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+3947
-3356
lines changed
File renamed without changes.

.github/ISSUE_TEMPLATE.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66

77
(write your answer here)
88

9+
910
<!--
1011
If you answered "Yes":
11-
12+
1213
Please note that your issue will be fixed much faster if you spend about
1314
half an hour preparing it, including the exact reproduction steps and a demo.
14-
15+
1516
If you're in a hurry or don't feel confident, it's fine to report bugs with
1617
less details, but this makes it less likely they'll get fixed soon.
1718
@@ -37,14 +38,14 @@
3738
Then you need to decide which package manager you prefer to use.
3839
We support both npm (https://npmjs.com) and yarn (http://yarnpkg.com/).
3940
However, **they can't be used together in one project** so you need to pick one.
40-
41+
4142
If you decided to use npm, run this in your project directory:
4243
4344
npm install -g npm@latest
4445
npm install
4546
4647
This should fix your project.
47-
48+
4849
If you decided to use yarn, update it first (https://yarnpkg.com/en/docs/install).
4950
Then run in your project directory:
5051
@@ -62,19 +63,20 @@
6263

6364
(Write your answer here.)
6465

66+
6567
### Which terms did you search for in User Guide?
6668

6769
<!--
6870
There are a few common documented problems, such as watcher not detecting changes, or build failing.
6971
They are described in the Troubleshooting section of the User Guide:
7072
71-
https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting
73+
https://facebook.github.io/create-react-app/docs/troubleshooting
7274
7375
Please scan these few sections for common problems.
7476
Additionally, you can search the User Guide itself for something you're having issues with:
75-
76-
https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md
77-
77+
78+
https://facebook.github.io/create-react-app/
79+
7880
If you didn't find the solution, please share which words you searched for.
7981
This helps us improve documentation for future readers who might encounter the same problem.
8082
-->
@@ -98,6 +100,7 @@
98100

99101
(paste the output of the command here)
100102

103+
101104
### Steps to Reproduce
102105

103106
<!--
@@ -154,13 +157,14 @@
154157

155158
(Paste the link to an example project and exact instructions to reproduce the issue.)
156159

160+
157161
<!--
158162
What happens if you skip this step?
159-
163+
160164
We will try to help you, but in many cases it is impossible because crucial
161165
information is missing. In that case we'll tag an issue as having a low priority,
162166
and eventually close it if there is no clear direction.
163-
167+
164168
We still appreciate the report though, as eventually somebody else might
165169
create a reproducible example for it.
166170

.github/lock.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Configuration for lock-threads - https://github.com/dessant/lock-threads
2+
3+
# Number of days of inactivity before a closed issue or pull request is locked
4+
daysUntilLock: 5
5+
6+
# Issues and pull requests with these labels will not be locked. Set to `[]` to disable
7+
exemptLabels: []
8+
9+
# Do not comment when locking
10+
setLockReason: false
11+
lockComment: false

.github/stale.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 30
5+
6+
# Number of days of inactivity before a stale Issue or Pull Request is closed.
7+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8+
daysUntilClose: 5
9+
10+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
11+
exemptLabels:
12+
- "contributions: claimed"
13+
- "contributions: up for grabs!"
14+
- "good first issue"
15+
- "issue: announcement"
16+
- "issue: bug"
17+
- "issue: proposal"
18+
- "tag: bug fix"
19+
- "tag: needs investigation"
20+
21+
# Set to true to ignore issues in a project (defaults to false)
22+
exemptProjects: true
23+
24+
# Set to true to ignore issues in a milestone (defaults to false)
25+
exemptMilestones: true
26+
27+
# Label to use when marking as stale
28+
staleLabel: stale
29+
30+
# Limit the number of actions per hour, from 1-30. Default is 30
31+
limitPerRun: 30
32+
33+
issues:
34+
# Comment to post when marking Issues as stale.
35+
markComment: >
36+
This issue has been automatically marked as stale because it has not had any
37+
recent activity. It will be closed in 5 days if no further activity occurs.
38+
39+
# Comment to post when closing a stale Issue.
40+
closeComment: >
41+
This issue has been automatically closed because it has not had any recent
42+
activity. If you have a question or comment, please open a new issue.
43+
44+
pulls:
45+
# Comment to post when marking Pull Request as stale.
46+
markComment: >
47+
This pull request has been automatically marked as stale because it has not
48+
had any recent activity. It will be closed in 5 days if no further activity
49+
occurs.
50+
51+
# Comment to post when closing a stale Pull Request.
52+
closeComment: >
53+
This pull request has been automatically closed because it has not had any
54+
recent activity. If you have a question or comment, please open a new
55+
issue. Thank you for your contribution!

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ language: node_js
44
node_js:
55
- 8
66
- 10
7+
- node
78
cache:
89
yarn: true
910
directories:
1011
- .npm
1112
before_install:
12-
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --nightly
13+
- curl -o- -L https://yarnpkg.com/install.sh | bash -s
1314
- export PATH="$HOME/.yarn/bin:$PATH"
1415
install: true
1516
script:

0 commit comments

Comments
 (0)