sample-cross-fx 0.14.13-beta.3734 → 0.14.14-beta.3753

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.
@@ -131041,7 +131041,7 @@ function createInstance(config = {}) {
131041
131041
  const createApi = apiFactory(context, usedPlugins);
131042
131042
  const root = createApi({
131043
131043
  name: 'root',
131044
- version: "0.14.13-beta.3734" || 0,
131044
+ version: "0.14.14-beta.3753" || 0,
131045
131045
  spec: ''
131046
131046
  });
131047
131047
  const options = (0,_helpers__WEBPACK_IMPORTED_MODULE_6__.createPiletOptions)({
@@ -133442,12 +133442,12 @@ function installPiralDebug(options) {
133442
133442
  debug: debugApiVersion,
133443
133443
  instance: {
133444
133444
  name: "sample-cross-fx",
133445
- version: "0.14.13-beta.3734",
133445
+ version: "0.14.14-beta.3753",
133446
133446
  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"
133447
133447
  },
133448
133448
  build: {
133449
- date: "2022-02-26T23:07:08.876Z",
133450
- cli: "0.14.12",
133449
+ date: "2022-03-01T13:53:55.289Z",
133450
+ cli: "0.14.13",
133451
133451
  compat: "0.14"
133452
133452
  },
133453
133453
  pilets: {
@@ -133497,16 +133497,32 @@ function installPiralDebug(options) {
133497
133497
 
133498
133498
  const getDependencyMap = () => {
133499
133499
  const dependencyMap = {};
133500
+
133501
+ const addDeps = (pilet, dependencies) => {
133502
+ if (!(pilet in dependencyMap)) {
133503
+ dependencyMap[pilet] = [];
133504
+ }
133505
+
133506
+ dependencyMap[pilet].push(...dependencies);
133507
+ };
133508
+
133500
133509
  const pilets = getPilets().map(pilet => ({
133501
133510
  name: pilet.name,
133502
- link: pilet.link
133511
+ link: pilet.link,
133512
+ base: pilet.base
133503
133513
  })).filter(m => m.link);
133504
133514
  Object.keys(depMap).forEach(url => {
133505
133515
  const dependencies = depMap[url];
133506
133516
  const pilet = pilets.find(p => p.link === url);
133507
133517
 
133508
133518
  if (pilet) {
133509
- dependencyMap[pilet.name] = dependencies;
133519
+ addDeps(pilet.name, dependencies);
133520
+ } else if (!pilet) {
133521
+ const parent = pilets.find(p => url.startsWith(p.base));
133522
+
133523
+ if (parent) {
133524
+ addDeps(parent.name, dependencies);
133525
+ }
133510
133526
  }
133511
133527
  });
133512
133528
  sendMessage({
@@ -255563,4 +255579,4 @@ const app = React.createElement(piral_core_1.Piral, {
255563
255579
 
255564
255580
  /******/ })()
255565
255581
  ;
255566
- //# sourceMappingURL=index.855487.js.map
255582
+ //# sourceMappingURL=index.469b4c.js.map