-
Notifications
You must be signed in to change notification settings - Fork 0
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
v0.9.0 #14
base: master
Are you sure you want to change the base?
v0.9.0 #14
Conversation
Bedrock, $, _, globalRef; | ||
|
||
// Called when we're ready to setup and export | ||
function ready(_, $, exports) { |
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.
instead of exports
which is already a variable in Node.js can this just be called Bedrock
or something stating that its actually the bedrock object were going to be putting stuff one?
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 exportObj
idk
In response to all the micro-optimizations you're making to looping through arrays I don't think its worth it. See: jashkenas/backbone#3497 |
updated the README and added documentation
… jQuery-like library if available globally
Sorry this is lumped together but there was a ton of stuff I wanted to change. The goal of this version bump is to both correct some inconsistencies and also clean up some code that seems neglected.
We inherited a bunch of functions that were iterating over objects unsafely and there were a few spots using arguments passed in (which v8 won't optimize).
I also added a ton of documentation (but still incomplete). I think we can write more as time moves along but it's better than the nonexistent docs we have now.
I got rid of the coffeescript dev dependency and removed the model.coffee since it was needlessly duplicating tests from model.js.