Skip to content

Commit

Permalink
Update readme.markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil93 authored Apr 4, 2018
1 parent 9ea8a65 commit d924e9b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions readme.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,10 @@ with the number of bytes in the bundle X and the time in seconds Y.

# working with browserify transforms

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

```
module.exports = function(file) {
return through(
function(buf, enc, next) {
Expand All @@ -214,6 +215,7 @@ module.exports = function(file) {
}
);
};
```

# install

Expand Down

0 comments on commit d924e9b

Please sign in to comment.