Skip to content

Commit 27c8ade

Browse files
committed
Fix sheetify paths in readme.
1 parent 9199c17 commit 27c8ade

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ npm install --save sheetify-postcss
1111
### programmatic
1212

1313
```js
14-
const sheetify = require('sheetify/stream')
14+
const sheetify = require('sheetify')
1515
const path = require('path')
1616

1717
const opts = {
@@ -28,7 +28,7 @@ const opts = {
2828
}
2929

3030
browserify('./entry')
31-
.transform('sheetify', opts)
31+
.transform(sheetify, opts)
3232
.bundle()
3333
.pipe(process.stdout)
3434
```
@@ -42,7 +42,7 @@ add to your `package.json` `browserify.transform` field:
4242
"browserify": {
4343
"transform": [
4444
[
45-
"sheetify/transform",
45+
"sheetify",
4646
{
4747
"use": [
4848
[

0 commit comments

Comments
 (0)