@@ -9,21 +9,21 @@ class Router extends EmberRouter {
99
1010export class App extends EmberApp {
1111 /**
12- * Any services or anything from the addon that needs to be in the app-tree registry
13- * will need to be manually specified here.
14- *
15- * Techniques to avoid needing this:
16- * - private services
17- * - require the consuming app import and configure themselves
18- * (which is what we're emulating here)
19- */
12+ * Any services or anything from the addon that needs to be in the app-tree registry
13+ * will need to be manually specified here.
14+ *
15+ * Techniques to avoid needing this:
16+ * - private services
17+ * - require the consuming app import and configure themselves
18+ * (which is what we're emulating here)
19+ */
2020 modules = {
2121 ' ./router' : Router ,
2222 ' ./services/page-title' : PageTitleService ,
23- /**
24- * NOTE: this glob will import everything matching the glob,
25- * and includes non-services in the services directory.
26- */
23+ /**
24+ * NOTE: this glob will import everything matching the glob,
25+ * and includes non-services in the services directory.
26+ */
2727 ... import .meta .glob (' ./services/**/*' , { eager: true }),
2828 /**
2929 * These imports are not magic, but we do require that all entries in the
@@ -35,4 +35,4 @@ export class App extends EmberApp {
3535 };
3636}
3737
38- Router .map (function () { });
38+ Router .map (function () {});
0 commit comments