-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for working with transforms #357
Conversation
Informing Watchify about files to watch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay, great! Thanks for getting on that so quickly :)
Left two comments about spelling and markdown syntax, let me know if it's unclear!
readme.markdown
Outdated
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. | ||
|
||
module.exports = function(file) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Surround this with a fenced code block to make it syntax highlight correctly:
```js
code here
```
readme.markdown
Outdated
# 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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some small spelling improvements:
- to bundle → to the bundle
- emiting 'file' event → emitting a 'file' event
Done :) |
How to merge it? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, missed your update. thanks!
Informing Watchify about files to watch.