Skip to content

Commit d924e9b

Browse files
author
Kamil93
authoredApr 4, 2018
Update readme.markdown
1 parent 9ea8a65 commit d924e9b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎readme.markdown

+4-2
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,10 @@ with the number of bytes in the bundle X and the time in seconds Y.
198198

199199
# working with browserify transforms
200200

201-
If your custom transform for browserify adds new files to bundle in a non-standard way without requiring.
202-
You can inform Watchify about these files by emiting 'file' event.
201+
If your custom transform for browserify adds new files to the bundle in a non-standard way without requiring.
202+
You can inform Watchify about these files by emiting a 'file' event.
203203

204+
```
204205
module.exports = function(file) {
205206
return through(
206207
function(buf, enc, next) {
@@ -214,6 +215,7 @@ module.exports = function(file) {
214215
}
215216
);
216217
};
218+
```
217219

218220
# install
219221

0 commit comments

Comments
 (0)
Please sign in to comment.