Skip to content

Commit

Permalink
Added PostCSS use to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonmoeller committed Jan 28, 2016
1 parent a64a8c5 commit f5b7cd4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ An unmodified copy of Eric Meyer's CSS reset.
With [Bower](http://bower.io):

$ bower install reset-css


With [NPM](http://npmjs.com):

$ npm install --save github:shannonmoeller/reset-css

## Usage

### Bower

HTML:

```html
Expand Down Expand Up @@ -38,6 +44,14 @@ Less:
@import (inline) 'bower_components/reset-css/reset.css';
```

### NPM

PostCSS and [postcss-import](https://github.com/postcss/postcss-import):

```css
@import 'reset-css/reset.css';
```

----

Eric Meyer http://meyerweb.com/eric/tools/css/reset/
Expand Down
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "reset-css",
"version": "2.0.2011012602",
"version": "2.0.2011012603",
"description": "An unmodified copy of Eric Meyer's CSS reset.",
"homepage": "http://meyerweb.com/eric/tools/css/reset/",
"authors": ["Eric Meyer"],
"license": "PUBLIC DOMAIN (UNLICENSED)",
"main": [
"reset.css",
"reset.less",
Expand Down
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "reset-css",
"version": "2.0.2011012603",
"description": "An unmodified copy of Eric Meyer's CSS reset.",
"homepage": "http://meyerweb.com/eric/tools/css/reset/",
"authors": ["Eric Meyer"],
"style": "reset.css"
}

0 comments on commit f5b7cd4

Please sign in to comment.