@next-core/brick-utils 2.45.7 → 2.45.9

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.
@@ -773,6 +773,8 @@
773
773
  case "onMessageClose":
774
774
  case "onBeforePageLoad":
775
775
  case "onBeforePageLeave":
776
+ case "onMount":
777
+ case "onUnmount":
776
778
  case "onMediaChange":
777
779
  return {
778
780
  type: "SimpleLifeCycle",
@@ -21595,7 +21597,7 @@
21595
21597
  m.set(namespace, item);
21596
21598
  } else {
21597
21599
  // eslint-disable-next-line no-console
21598
- console.error("the file path of brick is `".concat(item.filePath, "` and it is non-standard package path"));
21600
+ console.error("Unexpected brick package file path: \"".concat(item.filePath, "\""));
21599
21601
  }
21600
21602
 
21601
21603
  return m;
@@ -21625,7 +21627,7 @@
21625
21627
  }
21626
21628
  } else {
21627
21629
  // eslint-disable-next-line no-console
21628
- console.error("the name of brick is `".concat(brick, "` and it don't match any brick package"));
21630
+ console.error("Brick `".concat(brick, "` does not match any brick package"));
21629
21631
  }
21630
21632
  }
21631
21633
  });
@@ -21671,7 +21673,7 @@
21671
21673
  }
21672
21674
  } else {
21673
21675
  // eslint-disable-next-line no-console
21674
- console.error("the name of ".concat(isProcessor ? "processor" : "brick", " is `").concat(name, "` and it don't match any package"));
21676
+ console.error("".concat(isProcessor ? "Processor" : "Brick", " `").concat(name, "` does not match any brick package"));
21675
21677
  }
21676
21678
  }
21677
21679
  });
@@ -21689,7 +21691,7 @@
21689
21691
  }
21690
21692
  } else {
21691
21693
  // eslint-disable-next-line no-console
21692
- console.error("the name of editor is `".concat(editor, "` and it don't match any editor package"));
21694
+ console.error("Editor `".concat(editor, "` does not match any brick package"));
21693
21695
  }
21694
21696
  }
21695
21697
  });