-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Minor README tweaks #1452
Minor README tweaks #1452
Conversation
formatting, phrasing, etc.
@thejameskyle mind taking a look? |
@@ -19,23 +19,23 @@ | |||
|
|||
**Fast:** Yarn caches every package it downloads so it never needs to download the same package again. It also parallelizes operations to maximize resource utilization so install times are faster than ever. | |||
|
|||
**Reliable:** Using a detailed, but concise, lockfile format, and a deterministic algorithm for installs, Yarn is able to guarantee that an install that worked on one system will work exactly the same way on any other system. | |||
**Reliable:** Thanks to a detailed (but concise) lockfile format and a deterministic algorithm for installs, Yarn is able to guarantee that an install that worked on one system will work exactly the same way on any other system. |
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.
Using a detailed, but concise, lockfile format
This was better as is
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.
What about
-Using a detailed, but concise, lockfile format, and a deterministic algorithm for installs,
+Using a detailed, concise lockfile format and a deterministic algorithm for installs,
I don't think we need the "but".
* **Offline Mode.** If you've installed a package before, you can install it again without any internet connection. | ||
* **Deterministic.** The same dependencies will be installed in the same exact way on any machine, regardless of install order. | ||
* **Network Performance.** Yarn efficiently queues up requests and avoids request waterfalls in order to maximize network utilization. | ||
* **Multiple Registries.** Install any package from either npm or Bower. Keep your package workflow the same. |
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.
we should remove this bullet point
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.
The change here seems reasonable, but if @thejameskyle thinks it should be removed, then let's remove it.
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.
Bower support is being removed
cc @JoelMarcey - Any other thoughts on these phrasing changes? |
@Daniel15 The changes seem good and reasonable to me. |
formatting, phrasing, etc.