-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
docs(gettingStarted): add Yarn install #3588
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3588 +/- ##
=======================================
Coverage 62.39% 62.39%
=======================================
Files 181 181
Lines 6646 6646
Branches 6 6
=======================================
Hits 4147 4147
Misses 2496 2496
Partials 3 3 Continue to review full report at Codecov.
|
docs/en/GettingStarted.md
Outdated
|
||
``` | ||
npm install --save-dev jest | ||
yarn add --dev jest | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a feeling that inexperienced users may try to do both, as the commands are in the same block. How about:
Install Jest using npm
:
npm install --save-dev jest
or yarn
:
yarn add --dev jest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good call!
* docs(gettingStarted): add Yarn install cc @cpojer * Update GettingStarted.md
* docs(gettingStarted): add Yarn install cc @cpojer * Update GettingStarted.md
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
cc @cpojer
Summary
The instructions for installing via Yarn are slightly different than with npm. This meanwhile also gives a backlink to the detail page on Yarn, as discussed