This addon provides blueprint support for ember-cli ^2.0.0 projects that are importing Ember and Ember Data through bower.js. Projects that are using Ember and Ember Data as addons (imported from npm as dependencies through package.json) do not need this addon to provide blueprints, as the related blueprints are provided by the respective addons.
To provide tighter coupling of the blueprints with their respective libraries, it makes sense in the long run for ember-cli import such blueprints through the addons for those libraries. This will ensure that blueprints will keep up to date with changes to their libraries.
With the release of ember-cli 2.0.0, all blueprints that were not specific to ember-cli have been extracted to their respective libraries (ember, ember-data, ember-cli-qunit, and ember-cli-mocha). This addon simply provides backwards compatibility for projects not using those addons.
If the ember, ember-data, ember-cli-qunit, or ember-cli-mocha addons are installed in your project, they take precedent and will override the blueprints provided by this addon.
- component
- component-addon
- component-test
- controller
- controller-test
- helper
- helper-addon
- helper-test
- initializer
- initializer-addon
- initializer-test
- instance-initializer
- instance-initializer-addon
- instance-initializer-test
- mixin
- mixin-test
- resource
- route
- route-addon
- route-test
- service
- service-test
- template
- util
- util-test
- view
- view-test
- adapter
- adapter-test
- model
- model-test
- serializer
- serializer-test
- transform
- transform-test
- acceptance-test
- test-helper
- addon
- addon-import
- app
- blueprint
- http-mock
- http-proxy
- in-repo-addon
- lib
- server
From your project root, run: ember install ember-cli-legacy-blueprints
git clone
this repositorynpm install
bower install
npm link
Because the nature of this project, it needs to be consumed by an ember-cli project to properly develop it.
- Add
"ember-cli-legacy-blueprints": "*"
to your consuming project'spackage.json
- From your project root run
npm link ember-cli-legacy-blueprints
ember server
- Visit your app at http://localhost:4200.
ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.