Skip to content

Commit c17ecee

Browse files
authored
Merge pull request #20 from CodingZeal/chores/cra-1.0.12
Update to create-react-app 1.0.12
2 parents 9efe549 + 9bc4008 commit c17ecee

File tree

125 files changed

+3776
-10435
lines changed

Some content is hidden

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

125 files changed

+3776
-10435
lines changed

.github/ISSUE_TEMPLATE.md

+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
<!--
2+
PLEASE READ THE FIRST SECTION :-)
3+
-->
4+
5+
### Is this a bug report?
6+
7+
(write your answer here)
8+
9+
<!--
10+
If you answered "Yes":
11+
12+
Please note that your issue will be fixed much faster if you spend about
13+
half an hour preparing it, including the exact reproduction steps and a demo.
14+
15+
If you're in a hurry or don't feel confident, it's fine to report bugs with
16+
less details, but this makes it less likely they'll get fixed soon.
17+
18+
In either case, please fill as many fields below as you can.
19+
20+
If you answered "No":
21+
22+
If this is a question or a discussion, you may delete this template and write in a free form.
23+
Note that we don't provide help for webpack questions after ejecting.
24+
You can find webpack docs at https://webpack.js.org/.
25+
-->
26+
27+
28+
### Can you also reproduce the problem with npm 4.x?
29+
30+
<!--
31+
Many errors, especially related to "missing modules", are due to npm bugs.
32+
Which version of npm are you running? You can find out by checking:
33+
34+
npm -v
35+
36+
If it is 5.x, please be aware that it has more than 50 known bugs, and
37+
is not guaranteed to work with Create React App.
38+
39+
If it's not starting with 4, try to install npm 4.x:
40+
41+
npm install -g npm@4
42+
cd your_project_directory
43+
rm -rf node_modules
44+
npm cache clear
45+
npm install
46+
47+
Then try to reproduce the issue again.
48+
Can you still reproduce it?
49+
50+
Note: Please try this even if you are using Yarn so that we know whether it's a Yarn-only bug.
51+
-->
52+
53+
(Write your answer here.)
54+
55+
56+
### Which terms did you search for in User Guide?
57+
58+
<!--
59+
There are a few common documented problems, such as watcher not detecting changes, or build failing.
60+
They are described in the Troubleshooting section of the User Guide:
61+
62+
https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting
63+
64+
Please scan these few sections for common problems.
65+
Additionally, you can search the User Guide itself for something you're having issues with:
66+
67+
https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md
68+
69+
If you didn't find the solution, please share which words you searched for.
70+
This helps us improve documentation for future readers who might encounter the same problem.
71+
-->
72+
73+
(Write your answer here if relevant.)
74+
75+
76+
### Environment
77+
78+
<!--
79+
Please fill in all the relevant fields by running these commands in terminal.
80+
-->
81+
82+
1. `node -v`:
83+
2. `npm -v`:
84+
3. `yarn --version` (if you use Yarn):
85+
4. `npm ls react-scripts` (if you haven’t ejected):
86+
87+
Then, specify:
88+
89+
1. Operating system:
90+
2. Browser and version (if relevant):
91+
92+
93+
### Steps to Reproduce
94+
95+
<!--
96+
How would you describe your issue to someone who doesn’t know you or your project?
97+
Try to write a sequence of steps that anybody can repeat to see the issue.
98+
-->
99+
100+
(Write your steps here:)
101+
102+
1.
103+
2.
104+
3.
105+
106+
107+
### Expected Behavior
108+
109+
<!--
110+
How did you expect the tool to behave?
111+
It’s fine if you’re not sure your understanding is correct.
112+
Just write down what you thought would happen.
113+
-->
114+
115+
(Write what you thought would happen.)
116+
117+
118+
### Actual Behavior
119+
120+
<!--
121+
Did something go wrong?
122+
Is something broken, or not behaving as you expected?
123+
Please attach screenshots if possible! They are extremely helpful for diagnosing issues.
124+
-->
125+
126+
(Write what happened. Please add screenshots!)
127+
128+
129+
### Reproducible Demo
130+
131+
<!--
132+
If you can, please share a project that reproduces the issue.
133+
This is the single most effective way to get an issue fixed soon.
134+
135+
There are two ways to do it:
136+
137+
* Create a new app and try to reproduce the issue in it.
138+
This is useful if you roughly know where the problem is, or can’t share the real code.
139+
140+
* Or, copy your app and remove things until you’re left with the minimal reproducible demo.
141+
This is useful for finding the root cause. You may then optionally create a new project.
142+
143+
This is a good guide to creating bug demos: https://stackoverflow.com/help/mcve
144+
Once you’re done, push the project to GitHub and paste the link to it below:
145+
-->
146+
147+
(Paste the link to an example project and exact instructions to reproduce the issue.)
148+
149+
<!--
150+
What happens if you skip this step?
151+
152+
We will try to help you, but in many cases it is impossible because crucial
153+
information is missing. In that case we'll tag an issue as having a low priority,
154+
and eventually close it if there is no clear direction.
155+
156+
We still appreciate the report though, as eventually somebody else might
157+
create a reproducible example for it.
158+
159+
Thanks for helping us help you!
160+
-->

.github/PULL_REQUEST_TEMPLATE.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!--
2+
Thank you for sending the PR!
3+
4+
If you changed any code, please provide us with clear instructions on how you verified your changes work. Bonus points for screenshots!
5+
6+
Happy contributing!
7+
-->

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
language: node_js
33
node_js:
44
- 6
5-
- 7
5+
- 8
66
cache:
77
directories:
88
- node_modules

0 commit comments

Comments
 (0)