sample-cross-fx 0.15.2-beta.4915 → 0.15.2-beta.4921
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -54453,22 +54453,19 @@ function createDependencyLoader(convert, lazy = true) {
|
|
|
54453
54453
|
|
|
54454
54454
|
if (entry) {
|
|
54455
54455
|
entry.count++;
|
|
54456
|
+
yield entry.promise;
|
|
54456
54457
|
} else {
|
|
54457
54458
|
const urlWithoutExtension = dllUrl.substring(0, dllUrl.length - 4);
|
|
54458
54459
|
const pdbName = `${urlWithoutExtension}.pdb`;
|
|
54459
54460
|
const pdbUrl = references.find(m => m === pdbName);
|
|
54460
|
-
|
|
54461
|
-
if (pdbUrl) {
|
|
54462
|
-
yield (0,_interop__WEBPACK_IMPORTED_MODULE_1__.loadResourceWithSymbol)(dllUrl, pdbUrl);
|
|
54463
|
-
} else {
|
|
54464
|
-
yield (0,_interop__WEBPACK_IMPORTED_MODULE_1__.loadResource)(dllUrl);
|
|
54465
|
-
}
|
|
54466
|
-
|
|
54461
|
+
const promise = pdbUrl ? (0,_interop__WEBPACK_IMPORTED_MODULE_1__.loadResourceWithSymbol)(dllUrl, pdbUrl) : (0,_interop__WEBPACK_IMPORTED_MODULE_1__.loadResource)(dllUrl);
|
|
54467
54462
|
loadedDependencies.push({
|
|
54468
54463
|
name: dllName,
|
|
54469
54464
|
url: dllUrl,
|
|
54470
|
-
count: 1
|
|
54465
|
+
count: 1,
|
|
54466
|
+
promise
|
|
54471
54467
|
});
|
|
54468
|
+
yield promise;
|
|
54472
54469
|
}
|
|
54473
54470
|
|
|
54474
54471
|
definedBlazorReferences.push(dllName);
|
|
@@ -63560,11 +63557,11 @@ function installPiralDebug(options) {
|
|
|
63560
63557
|
debug: debugApiVersion,
|
|
63561
63558
|
instance: {
|
|
63562
63559
|
name: "sample-cross-fx",
|
|
63563
|
-
version: "0.15.2-beta.
|
|
63560
|
+
version: "0.15.2-beta.4921",
|
|
63564
63561
|
dependencies: "@angular/common,@angular/compiler,@angular/core,@angular/platform-browser,@angular/platform-browser-dynamic,@webcomponents/webcomponentsjs,angular,aurelia-framework,aurelia-templating-binding,aurelia-templating-resources,aurelia-pal-browser,aurelia-event-aggregator,aurelia-history-browser,hyperapp,inferno,inferno-create-element,mithril,lit-element,solid-js,solid-js/dom,piral-ng/common,preact,riot,rxjs,vue,zone.js,tslib,react,react-dom,react-router,react-router-dom"
|
|
63565
63562
|
},
|
|
63566
63563
|
build: {
|
|
63567
|
-
date: "2022-11-
|
|
63564
|
+
date: "2022-11-28T00:44:22.937Z",
|
|
63568
63565
|
cli: "0.15.1",
|
|
63569
63566
|
compat: "0.15"
|
|
63570
63567
|
}
|
|
@@ -216413,4 +216410,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
216413
216410
|
|
|
216414
216411
|
/******/ })()
|
|
216415
216412
|
;
|
|
216416
|
-
//# sourceMappingURL=index.
|
|
216413
|
+
//# sourceMappingURL=index.d22a16.js.map
|