sample-cross-fx 1.2.0-beta.5846 → 1.2.0-beta.5853
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.
- package/app/{index.295434.js → index.18c41f.js} +12 -8
- package/app/{index.295434.js.map → index.18c41f.js.map} +1 -1
- package/app/index.html +1 -1
- package/app/index.js +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +20 -20
|
@@ -54478,6 +54478,10 @@ var _a, _b;
|
|
|
54478
54478
|
|
|
54479
54479
|
const loadedDependencies = (_a = window.$blazorDependencies) !== null && _a !== void 0 ? _a : window.$blazorDependencies = [];
|
|
54480
54480
|
const depsWithPrios = (_b = window.$blazorDependencyPrios) !== null && _b !== void 0 ? _b : window.$blazorDependencyPrios = [];
|
|
54481
|
+
function toPdb(url) {
|
|
54482
|
+
const front = url.substring(0, url.length - 4);
|
|
54483
|
+
return `${front}.pdb`;
|
|
54484
|
+
}
|
|
54481
54485
|
function createDependencyLoader(convert) {
|
|
54482
54486
|
const definedBlazorReferences = [];
|
|
54483
54487
|
const loadedBlazorPilets = [];
|
|
@@ -54508,9 +54512,8 @@ function createDependencyLoader(convert) {
|
|
|
54508
54512
|
}
|
|
54509
54513
|
const dependencies = references.filter(m => m.endsWith('.dll'));
|
|
54510
54514
|
const dllUrl = dependencies.pop();
|
|
54511
|
-
const
|
|
54512
|
-
const
|
|
54513
|
-
const pdbUrl = references.find(m => m === piletPdb);
|
|
54515
|
+
const pdbUrl = toPdb(dllUrl);
|
|
54516
|
+
const dependencySymbols = dependencies.map(toPdb).filter(dep => references.includes(dep));
|
|
54514
54517
|
const id = Math.random().toString(26).substring(2);
|
|
54515
54518
|
yield (0,_interop__WEBPACK_IMPORTED_MODULE_1__.loadBlazorPilet)(id, {
|
|
54516
54519
|
name: meta.name || '(unknown)',
|
|
@@ -54518,9 +54521,10 @@ function createDependencyLoader(convert) {
|
|
|
54518
54521
|
config: JSON.stringify(meta.config || {}),
|
|
54519
54522
|
baseUrl: meta.basePath || dllUrl.substring(0, dllUrl.lastIndexOf('/')).replace('/_framework/', '/'),
|
|
54520
54523
|
dependencies,
|
|
54524
|
+
dependencySymbols: capabilities.includes('dependency-symbols') ? dependencySymbols : undefined,
|
|
54521
54525
|
satellites,
|
|
54522
54526
|
dllUrl,
|
|
54523
|
-
pdbUrl
|
|
54527
|
+
pdbUrl: references.includes(pdbUrl) ? pdbUrl : undefined
|
|
54524
54528
|
});
|
|
54525
54529
|
loadedBlazorPilets.push(id);
|
|
54526
54530
|
} else {
|
|
@@ -60745,12 +60749,12 @@ function installPiralDebug(options) {
|
|
|
60745
60749
|
debug: debugApiVersion,
|
|
60746
60750
|
instance: {
|
|
60747
60751
|
name: "sample-cross-fx",
|
|
60748
|
-
version: "1.2.0-beta.
|
|
60752
|
+
version: "1.2.0-beta.5853",
|
|
60749
60753
|
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/web,piral-ng/common,preact,riot,rxjs,vue,zone.js,tslib,react,react-dom,react-router,react-router-dom"
|
|
60750
60754
|
},
|
|
60751
60755
|
build: {
|
|
60752
|
-
date: "2023-08-
|
|
60753
|
-
cli: "1.2.0-beta.
|
|
60756
|
+
date: "2023-08-22T19:38:19.261Z",
|
|
60757
|
+
cli: "1.2.0-beta.5853",
|
|
60754
60758
|
compat: "1"
|
|
60755
60759
|
}
|
|
60756
60760
|
};
|
|
@@ -222286,4 +222290,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
222286
222290
|
|
|
222287
222291
|
/******/ })()
|
|
222288
222292
|
;
|
|
222289
|
-
//# sourceMappingURL=index.
|
|
222293
|
+
//# sourceMappingURL=index.18c41f.js.map
|