1
1
mirror of https://github.com/primer/css.git synced 2024-09-22 06:07:31 +03:00

Merge pull request #3 from josh/patch-1

Prefer public primer-css package name
This commit is contained in:
Mark Otto 2015-03-23 13:30:09 -07:00
commit 20c1914c58

View File

@ -28,15 +28,13 @@ Download the [latest release](https://github.com/github/primer/releases/latest)
### Bower ### Bower
Install Primer with Bower by adding `https://github.com/github/primer.git#x.x.x` to your app's `bower.json` (in `github/github`, this is `vendor/assets/bower.json`). Replace `x.x.x` with the latest version number. Install Primer with Bower by adding `primer-css` to your app's `bower.json` (in `github/github`, this is `vendor/assets/bower.json`). Replace `x.x.x` with the latest version number.
**Remember:** Primer is a *private* Bower project, so simply specifying a version range isn't enough. You must include the Git URL.
``` json ``` json
{ {
"name": "myapp", "name": "myapp",
"dependencies": { "dependencies": {
"primer": "https://github.com/github/primer.git#0.x.x" "primer-css": "0.x.x"
} }
} }
``` ```
@ -117,7 +115,7 @@ Within `bower.json`, update to a new release by changing the version number that
{ {
"name": "myapp", "name": "myapp",
"dependencies": { "dependencies": {
"primer": "https://github.com/github/primer.git#0.x.x" "primer-css": "0.x.x"
} }
} }
``` ```