You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+41-1Lines changed: 41 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ In your app.js or app.ts, or wherever you configure your application
17
17
- import EmberResolver from 'ember-resolver';
18
18
+ import EmberApp from 'ember-strict-application-resolver';
19
19
20
-
class TestApp extends EmberApp {
20
+
class YouApp extends EmberApp {
21
21
- modulePrefix = config.modulePrefix;
22
22
- podModulePrefix = config.podModulePrefix;
23
23
- Resolver = EmberResolver.withModules({
@@ -47,6 +47,46 @@ The type of `modules` is:
47
47
};
48
48
```
49
49
50
+
### `buildRegistry`
51
+
52
+
Libraries may declare `ember-strict-application-resolver` as a `dependencies` entry, and then import from `./build-registry` - to provide helpers for packages all the library's services and other things that need to be in the registry (such as from the library's dependencies as well)
0 commit comments