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
thrownewError("\n Fusebox-loader _import() telling this not registered in the loader:"+address+", module id was: "+moduleId+"\n Did you forget to add it to bundle?\n\n "+err_1+"\n ");
223
+
case5:
224
+
modulePath=this.findFuseBoxPath(moduleId);
225
+
try{
226
+
module=this.loadWithFusebox(modulePath);
227
+
module=ensureOriginOnExports(module,moduleId);
228
+
this.moduleRegistry[moduleId]=module;
229
+
return[2,Promise.resolve(module)];
230
+
}
231
+
catch(err){
232
+
thrownewError("\n Fusebox-loader _import() telling this not registered in the loader:"+address+", module path returned: "+modulePath+"\n Did you forget to add it to bundle?\n\n "+err+"\n ");
233
+
}
234
+
return[2];
224
235
}
225
236
});
226
237
});
@@ -265,7 +276,8 @@ var FuseBoxAureliaLoader = (function (_super) {
265
276
retunValue=moduleId+"/"+entry;
266
277
}
267
278
if(!this.fuseBoxExist(retunValue)){
268
-
debugPrint('error','findFuseBoxPath() failed to find',arguments);
279
+
debugPrint('error','findFuseBoxPath() failed to find',path);
280
+
thrownewError("\n fusebox-loader - findFuseBoxPath() failed to find:"+path+"\n Did you forget to add it to bundle??\n\n ");
269
281
}
270
282
}
271
283
break;
@@ -278,7 +290,8 @@ var FuseBoxAureliaLoader = (function (_super) {
278
290
retunValue='~/'+path;
279
291
break;
280
292
default:
281
-
debugPrint('error','findFuseBoxPath() failed to find',arguments);
293
+
debugPrint('error','findFuseBoxPath() failed to find',path);
294
+
thrownewError("\n fusebox-loader - findFuseBoxPath() failed to find:"+path+"\n Did you forget to add it to bundle??\n\n ");
282
295
}
283
296
}
284
297
returnretunValue;
@@ -287,20 +300,3 @@ var FuseBoxAureliaLoader = (function (_super) {
0 commit comments