-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Extracts CoreObject into a separate library. #1752
Conversation
@@ -17,12 +17,14 @@ var preprocessJs = p.preprocessJs; | |||
var preprocessCss = p.preprocessCss; | |||
var preprocessTemplates = p.preprocessTemplates; | |||
|
|||
var CoreObject = require('core_object'); |
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.
Why underscored?
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.
@stefanpenner named the repo core_object
. I named the package core_object
.
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.
underscore seems odd to me considering everything else is hyphenated?
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.
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.
its now dasherized
@rwjblue @stefanpenner PR updated and ready to be merged in. |
@twokul - It also needs to be added to the bundled deps section in the |
This is a first step towards the direction of splitting `ember-cli` into micro libraries. `CoreObject` now lives under [stefanpenner/core_object](https://github.com/stefanpenner/core_object).
@rwjblue good catch! fixed. |
LGTM @stefanpenner - any last words? |
@rwjblue sounds like a threat to @stefanpenner |
Extracts CoreObject into a separate library.
This is a first step towards the direction of splitting
ember-cli
into micro libraries.CoreObject
now lives under stefanpenner/core_object.