mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-27 10:42:45 +03:00
2f4f6db133
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
import Resolver from 'ember/resolver';
|
|
import config from '../../config/environment';
|
|
|
|
let resolver = Resolver.create();
|
|
|
|
resolver.namespace = {
|
|
modulePrefix: config.modulePrefix,
|
|
podModulePrefix: config.podModulePrefix
|
|
};
|
|
|
|
export default resolver;
|