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

docs(Usage): switch from NPM to yarn #2232

Merged
merged 1 commit into from
Oct 29, 2017
Merged
Changes from all commits
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
8 changes: 3 additions & 5 deletions docs/app/Views/Usage.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@ const Usage = () => (
<Segment basic padded>
<Header as='h2' dividing>JavaScript</Header>
<p>
The Semantic UI React package can be installed via NPM:
The Semantic UI React package can be installed via Yarn:
</p>
<Segment>
<pre>$ yarn add {pkg.name}</pre>
<pre>$ npm install {pkg.name} --save</pre>
</Segment>
<p>
Installing Semantic UI React provides the JavaScript for your components.
Expand Down Expand Up @@ -98,12 +97,12 @@ const Usage = () => (
main Semantic UI repository to provide a lightweight CSS only version of Semantic UI.
</p>
<p>
Semantic UI CSS can be installed as a package in your project using NPM. You won't be able to
Semantic UI CSS can be installed as a package in your project using Yarn. You won't be able to
use custom themes with this method.
</p>
<Segment>
<pre>
$ npm install semantic-ui-css --save
$ yarn add semantic-ui-css
</pre>
</Segment>
<p>
Expand Down Expand Up @@ -133,7 +132,6 @@ const Usage = () => (
</p>
<Segment>
<pre>$ yarn add semantic-ui --dev</pre>
<pre>$ npm install semantic-ui --save-dev</pre>
</Segment>
<p>
After building the project with Gulp, you'll need to include the minified CSS file
Expand Down