sample-cross-fx 0.14.15-beta.3790 → 0.14.15-beta.3791

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.
@@ -131098,7 +131098,7 @@ function createInstance(config = {}) {
131098
131098
  const createApi = apiFactory(context, usedPlugins);
131099
131099
  const root = createApi({
131100
131100
  name: 'root',
131101
- version: "0.14.15-beta.3790" || 0,
131101
+ version: "0.14.15-beta.3791" || 0,
131102
131102
  spec: ''
131103
131103
  });
131104
131104
  const options = (0,_helpers__WEBPACK_IMPORTED_MODULE_6__.createPiletOptions)({
@@ -133554,24 +133554,26 @@ function installPiralDebug(options) {
133554
133554
 
133555
133555
  System.constructor.prototype.resolve = function (...args) {
133556
133556
  const [url, parent] = args;
133557
+ const result = systemResolve.call(this, ...args);
133557
133558
 
133558
133559
  if (parent) {
133559
- depMap[parent] = depMap[parent] || {};
133560
- depMap[parent][url] = true;
133560
+ const deps = depMap[parent] || {};
133561
+ deps[url] = result;
133562
+ depMap[parent] = deps;
133561
133563
  }
133562
133564
 
133563
- return systemResolve.call(this, ...args);
133565
+ return result;
133564
133566
  };
133565
133567
 
133566
133568
  const debugApi = {
133567
133569
  debug: debugApiVersion,
133568
133570
  instance: {
133569
133571
  name: "sample-cross-fx",
133570
- version: "0.14.15-beta.3790",
133572
+ version: "0.14.15-beta.3791",
133571
133573
  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,preact,riot,rxjs,vue,zone.js,react,react-dom,react-router,react-router-dom,history,tslib,path-to-regexp,@libre/atom,@dbeining/react-atom"
133572
133574
  },
133573
133575
  build: {
133574
- date: "2022-03-04T13:46:13.318Z",
133576
+ date: "2022-03-04T16:05:59.260Z",
133575
133577
  cli: "0.14.14",
133576
133578
  compat: "0.14"
133577
133579
  },
@@ -133624,9 +133626,18 @@ function installPiralDebug(options) {
133624
133626
  const dependencyMap = {};
133625
133627
 
133626
133628
  const addDeps = (pilet, dependencies) => {
133627
- const oldDeps = dependencyMap[pilet] || [];
133628
- const newDeps = Object.keys(dependencies).filter(depName => !oldDeps.includes(depName));
133629
- dependencyMap[pilet] = [...oldDeps, ...newDeps];
133629
+ const deps = dependencyMap[pilet] || [];
133630
+
133631
+ for (const depName of Object.keys(dependencies)) {
133632
+ if (!deps.some(m => m.demanded === depName)) {
133633
+ deps.push({
133634
+ demanded: depName,
133635
+ resolved: dependencies[depName]
133636
+ });
133637
+ }
133638
+ }
133639
+
133640
+ dependencyMap[pilet] = deps;
133630
133641
  };
133631
133642
 
133632
133643
  const pilets = getPilets().map(pilet => ({
@@ -255731,4 +255742,4 @@ const app = React.createElement(piral_core_1.Piral, {
255731
255742
 
255732
255743
  /******/ })()
255733
255744
  ;
255734
- //# sourceMappingURL=index.aca71d.js.map
255745
+ //# sourceMappingURL=index.b64adf.js.map