From 4b5e5bc391b6fb05c3606568ab354973b9b3165d Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 23 Mar 2015 12:42:59 -0700 Subject: [PATCH] Prefer public prime-css package name --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 13c4fb25..3938c0e1 100644 --- a/README.md +++ b/README.md @@ -28,15 +28,13 @@ Download the [latest release](https://github.com/github/primer/releases/latest) ### 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. - -**Remember:** Primer is a *private* Bower project, so simply specifying a version range isn't enough. You must include the Git URL. +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. ``` json { "name": "myapp", "dependencies": { - "primer": "https://github.com/github/primer.git#0.x.x" + "primer-css": "0.x.x" } } ``` @@ -123,7 +121,7 @@ Within `bower.json`, update to a new release by changing the version number that { "name": "myapp", "dependencies": { - "primer": "https://github.com/github/primer.git#0.x.x" + "primer-css": "0.x.x" } } ```