
Note: There is a [known issue](https://github.com/mixonic/ember-cli-deprecation-workflow/issues/30) with a deprecation warning coming from ...wait for it... ember-cli-deprecation-workflow. Otherwise, this simply bumps the necessary dependencies (suggested by the new generators) and makes the project conform to the minimal changes in import syntax.
12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
import Resolver from '../../resolver';
|
|
import config from '../../config/environment';
|
|
|
|
const resolver = Resolver.create();
|
|
|
|
resolver.namespace = {
|
|
modulePrefix: config.modulePrefix,
|
|
podModulePrefix: config.podModulePrefix
|
|
};
|
|
|
|
export default resolver;
|