From 86a23cb74eb97305b01e399d960efce2ad3bf5ec Mon Sep 17 00:00:00 2001 From: Hyunje Alex Jun Date: Thu, 12 Feb 2015 22:50:29 +0000 Subject: [PATCH] Don't use Bower in the same repo anymore. It has been separated into another repo: https://github.com/noraesae/perfect-scrollbar-bower --- README.md | 18 +++++++++++------- bower.json | 24 ------------------------ 2 files changed, 11 insertions(+), 31 deletions(-) delete mode 100644 bower.json diff --git a/README.md b/README.md index 6e09bb0..c979960 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,13 @@ It's cool, isn't it? ## Install +The best way to install and use perfect-scrollbar is with NPM. +It's registered on [npm](https://www.npmjs.org/package/perfect-scrollbar) as `perfect-scrollbar`. + +``` +$ npm install perfect-scrollbar +``` + You can download the latest stable version with download links [here](http://noraesae.github.io/perfect-scrollbar/). You also can find all releases on [Releases](https://github.com/noraesae/perfect-scrollbar/releases). @@ -69,18 +76,15 @@ $ npm install $ gulp # will lint and build the source code. ``` -You can use [Bower](http://bower.io/) to install the plugin. -The plugin is registered as `perfect-scrollbar`. + +There is a Bower package for perfect-scrollbar as well. It is managed +under the [perfect-scrollbar-bower](https://github.com/noraesae/perfect-scrollbar-bower) +repository. The plugin is registered as `perfect-scrollbar`. ``` $ bower install perfect-scrollbar ``` -It's registered on [npm](https://www.npmjs.org/package/perfect-scrollbar) as `perfect-scrollbar`. - -``` -$ npm install perfect-scrollbar -``` You can also load it from [cdnjs](http://cdnjs.com/). It is registered as [`jquery.perfect-scrollbar`](http://www.cdnjs.com/libraries/jquery.perfect-scrollbar). diff --git a/bower.json b/bower.json deleted file mode 100644 index 27dd81d..0000000 --- a/bower.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "perfect-scrollbar", - "version": "0.5.9", - "homepage": "http://noraesae.github.io/perfect-scrollbar/", - "authors": [ - "Hyunje Alex Jun " - ], - "description": "Tiny but perfect jQuery scrollbar plugin", - "main": [ - "dist/css/perfect-scrollbar.css", - "dist/js/perfect-scrollbar.js" - ], - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "jquery": ">=1.10" - } -}