We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ea8a65 commit d924e9bCopy full SHA for d924e9b
readme.markdown
@@ -198,9 +198,10 @@ with the number of bytes in the bundle X and the time in seconds Y.
198
199
# working with browserify transforms
200
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.
+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.
203
204
+```
205
module.exports = function(file) {
206
return through(
207
function(buf, enc, next) {
@@ -214,6 +215,7 @@ module.exports = function(file) {
214
215
}
216
);
217
};
218
219
220
# install
221
0 commit comments