-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Tweak readme's. Add simpler npm scripts to avoid npm install -g #81
Conversation
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.
README edits please
|
||
[![npm](https://img.shields.io/npm/v/@blueprintjs/core.svg?label=@blueprintjs/core)](https://www.npmjs.com/package/@blueprintjs/core) – Core styles & components for the UI kit. | ||
|
||
[![npm](https://img.shields.io/npm/v/@blueprintjs/datetime.svg?label=@blueprintjs/datetime)](https://www.npmjs.com/package/@blueprintjs/datetime) – Date & time UI components. | ||
[![npm](https://img.shields.io/npm/v/@blueprintjs/datetime.svg?label=@blueprintjs/datetime)](https://www.npmjs.com/package/@blueprintjs/datetime) – Date & time UI component. |
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.
👎 there are many components in this package
|
||
[![npm](https://img.shields.io/npm/v/@blueprintjs/table.svg?label=@blueprintjs/table)](https://www.npmjs.com/package/@blueprintjs/table) – Scalable interactive table UI components. | ||
[![npm](https://img.shields.io/npm/v/@blueprintjs/table.svg?label=@blueprintjs/table)](https://www.npmjs.com/package/@blueprintjs/table) – Scalable interactive table UI component. |
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.
again, package defines several components.
i struggle with how to explain the table library, because there is a component called Table
but you also need several others to even get started (Cell
, etc).
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.
✅ legit
@@ -4,7 +4,7 @@ Blueprint is a React UI toolkit for the Web. | |||
|
|||
This package contains the core set of UI components as CSS and React code. | |||
|
|||
## Usage | |||
## Installations |
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.
singular?
@@ -1,4 +1,4 @@ | |||
# [Blueprint](http://blueprintjs.com/) Date & Time Components | |||
# [Blueprint](http://blueprintjs.com/) Date & Time Component |
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.
plural
@@ -1,4 +1,4 @@ | |||
# [Blueprint](http://blueprintjs.com/) Table Components | |||
# [Blueprint](http://blueprintjs.com/) Table Component |
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.
plural? not sure about this one
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.
✅ spoke offline, this is legit
|
||
``` | ||
npm install --save @blueprintjs/table | ||
npm install --save @blueprintjs/core @blueprintjs/table |
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.
table
depends on core
so it's not necessary to install explicitly.
unless we want to encourage this behavior, for version sanity?
|
||
``` | ||
npm install --save @blueprintjs/datetime | ||
npm install --save @blueprintjs/core @blueprintjs/datetime |
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.
datetime
depends on core
which is why i didn't do this in the first place.
…ntir#81) * Tweak readme's. Add simpler npm scripts to avoid npm install -g * PR Comments * One more pluralization
No description provided.