Skip to content

Commit

Permalink
Fix sheetify paths in readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Apr 18, 2018
1 parent 9199c17 commit 27c8ade
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ npm install --save sheetify-postcss
### programmatic

```js
const sheetify = require('sheetify/stream')
const sheetify = require('sheetify')
const path = require('path')

const opts = {
Expand All @@ -28,7 +28,7 @@ const opts = {
}

browserify('./entry')
.transform('sheetify', opts)
.transform(sheetify, opts)
.bundle()
.pipe(process.stdout)
```
Expand All @@ -42,7 +42,7 @@ add to your `package.json` `browserify.transform` field:
"browserify": {
"transform": [
[
"sheetify/transform",
"sheetify",
{
"use": [
[
Expand Down

0 comments on commit 27c8ade

Please sign in to comment.