-
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
Allow Addons to provide blueprints. #1222
Conversation
This allows blueprints from addons to have access to all of the internal inherited functions from the EmberCLI `Blueprint` class without having to have `ember-cli` as a dependency. Also, make `addon.blueprintPaths` a function.
I believe that this is good to go now. @jgwhite - Would you review (you are likely the most familiar with the |
This looks awesome. LGTM. |
Thanks for bringing this over the finish line. I will publish my rest-api blueprint today, which can guide as a first example. |
Allow Addons to provide blueprints.
I have published my rest-api blueprint to npm + github: |
This might not be the right place to put it, but since i couldn't find any better place, I'm adding it here. I wanted to build an ember-addon for pagination. So, what would be the command to scaffold this new addon? i.e. like Is there anything published like this? |
@millisami - There is no blueprint for addons at the moment. This is definitely something that is on the roadmap, but we are still solidifying the way we want things structured before embedding it. |
@rwjblue Glad to hear its in the radar!! |
Replaces #1088.
All of the hard work was done by @manuelmitasch, I rebased and updated per the last few tweaks needed for completion.