Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update issue template to include the --info flag #3797

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 17 additions & 9 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,26 @@
### Environment

<!--
Please fill in all the relevant fields by running these commands in terminal.
-->
To help identify if a problem is specific to a platform, browser, or module version, information about your environment is required.
This enables the maintainers quickly reproduce the issue and give feedback.

1. `node -v`:
2. `npm -v`:
3. `yarn --version` (if you use Yarn):
4. `npm ls react-scripts` (if you haven’t ejected):
Run the command specific to your operating system in your react app's folder

Windows: `create-react-app --info | clip`
macOS: `create-react-app --info | pbcopy`
Linux: `create-react-app --info`

If you get an error, you can use `npx` or `yarn` by running one of the commands below in terminal.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn’t these instructions come first? Users who follow our README will get an error.


npx create-react-app --info
yarn create react-app --info

Then, specify:
Paste the output of the command in the section below.
-->
(paste the output of the command here)

1. Operating system:
2. Browser and version (if relevant):
Then, specify:
1. Browser and version (if relevant)


### Steps to Reproduce
Expand Down