-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
Breaking: Rename events to be more specific #104
Conversation
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.
@phated I've reviewed! There is one comment but it's not necessary.
And there is no other to be pointed out. Great!
@@ -457,13 +457,13 @@ Hacker.on('beforeRequire', function (name) { | |||
}); | |||
``` | |||
|
|||
#### require(name, module) | |||
#### `on('preload:success', function(name, module) {})` | |||
|
|||
Emitted when a module has been pre-loaded. |
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.
Should we add a comment for this and preload:failure
that these events are emitted for a module specified by opts.require
?
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.
Maybe we should rename 'require' to 'preload'?
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.
Yeah. That's good!
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.
@sttk on a related node, what happens with node's --require
flag? Why don't we respawn if that is present? Docs: https://nodejs.org/dist/latest-v10.x/docs/api/cli.html#cli_r_require_module
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.
Because --require
is not a v8 option but node flag. If --require
flag is specified to flaggedRespawn
as 3rd argument, it respawns.
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.
@phated I've reviewed. Please correct some comments. Other than that, there is no problem.
@@ -446,24 +446,24 @@ A function called after your application is executed. When invoked, `this` will | |||
|
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.
@@ -483,7 +483,39 @@ Hacker.on('requireFail', function (name, err) { | |||
}); |
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.
L481 is forgotten.
README.md
Outdated
|
||
```js | ||
var Hacker = new Liftoff({name:'hacker', require:'coffee-script'}); | ||
var Hacker = new Liftoff({name:'hacker', preload:'coffee-script'}); | ||
Hacker.on('beforeRequire', function (name) { |
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.
L455 is forgotten.
@@ -41,12 +41,12 @@ describe('registerLoader', function() { | |||
var extensions = { '.conf': ['xxx', loaderPath] }; | |||
|
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.
@sttk I believe I've addressed everything I missed. |
@phated Perfect! I think this is all good! |
@sttk While working on #103, I realized that I want to emit more events and thought it makes more sense to namespace them inside Liftoff. What do you think about these changes?