ember-cli-awesome-resolver

This resolver allows to use any amd module namespace defined in the configuration file.
Information

Package | ember-cli-awesome-resolver |
Description | Ember-cli awesome resolver |
Node Version | >= 0.10 |
Installation
ember install ember-cli-awesome-resolver
Contributing
Usage
- Define an array with the namespaces to use in
config/environment.js
- Import the resolver in
app/app.js
and create an instance passing the namespaces and the modules configuration
- Use the resolver when creating the ember application
Example
import AwesomeResolverMixin from 'ember-cli-awesome-resolver/mixins/awesome-resolver';
import config from './config/environment';
const Resolver = Ember.Resolver.extend(AwesomeResolverMixin, {
moduleBasedResolver: true,
namespaces: config.namespaces,
pluralizedTypes: {
config: 'config'
}
});
const App = Ember.Application.extend({
Resolver,
rootElement: '#app',
modulePrefix: config.modulePrefix,
ready() {
this.set('isReady', true);
}
});
export default App;
module.exports = function(environment) {
var ENV = {
namespaces: ['mynamespace', 'anothernamespace', ...],
APP: {
}
...
Contribute
If you want to contribute to this addon, please read the CONTRIBUTING.md.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
See the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE.md file for details