We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9199c17 commit 27c8adeCopy full SHA for 27c8ade
README.md
@@ -11,7 +11,7 @@ npm install --save sheetify-postcss
11
### programmatic
12
13
```js
14
-const sheetify = require('sheetify/stream')
+const sheetify = require('sheetify')
15
const path = require('path')
16
17
const opts = {
@@ -28,7 +28,7 @@ const opts = {
28
}
29
30
browserify('./entry')
31
- .transform('sheetify', opts)
+ .transform(sheetify, opts)
32
.bundle()
33
.pipe(process.stdout)
34
```
@@ -42,7 +42,7 @@ add to your `package.json` `browserify.transform` field:
42
"browserify": {
43
"transform": [
44
[
45
- "sheetify/transform",
+ "sheetify",
46
{
47
"use": [
48
0 commit comments