-
-
Notifications
You must be signed in to change notification settings - Fork 533
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
unsafe re-order and make .ts > .js #649
Conversation
src/index.ts
Outdated
extensions.forEach(extension => { | ||
registerExtension(extension, ignore, register, originalJsHandler) | ||
}) | ||
registerHanlder(opts, extensions, ignore, register, originalJsHandler) |
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.
Typo
registerHanlder(opts, extensions, ignore, register, originalJsHandler) | |
registerHandler(opts, extensions, ignore, register, originalJsHandler) |
src/index.ts
Outdated
/** | ||
* unsafe re-order and make .ts > .js | ||
*/ | ||
function registerHanlder ( |
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.
Typo
function registerHanlder ( | |
function registerHandler ( |
@blakeembrey Will this be merged ? |
@3mard Yes, if we refactor and add a test I'm ok merging this. |
@bluelovers will this be updated ? |
@bluelovers Can you please add some unit tests ? ( ... incase the hack became absolute ) |
@3mard i don't know how add a test for this |
This was landed in #837. |
#648