@pipelab/core-node 1.0.0-beta.15 → 1.0.0-beta.16

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @pipelab/core-node
2
2
 
3
+ ## 1.0.0-beta.16
4
+
5
+ ### Patch Changes
6
+
7
+ - qs
8
+ - Updated dependencies
9
+ - @pipelab/constants@1.0.0-beta.14
10
+ - @pipelab/shared@1.0.0-beta.12
11
+
3
12
  ## 1.0.0-beta.15
4
13
 
5
14
  ### Patch Changes
package/dist/index.mjs CHANGED
@@ -9704,6 +9704,7 @@ const builtInPlugins = async (options) => {
9704
9704
  const { usePlugins } = await import("@pipelab/shared");
9705
9705
  const { registerPlugins } = usePlugins();
9706
9706
  const { webSocketServer } = await import("./index.mjs");
9707
+ webSocketServer.broadcast("startup:progress", { type: "ready" });
9707
9708
  (async () => {
9708
9709
  const totalStart = Date.now();
9709
9710
  const pluginsToLoad = /* @__PURE__ */ new Map();
@@ -9766,7 +9767,7 @@ const builtInPlugins = async (options) => {
9766
9767
  console.log(`[Plugins] All startup plugins loaded in ${Date.now() - totalStart}ms.`);
9767
9768
  sendStartupProgress("All plugins loaded.");
9768
9769
  setTimeout(() => {
9769
- webSocketServer.broadcast("startup:progress", { type: "ready" });
9770
+ webSocketServer.broadcast("startup:progress", { type: "done" });
9770
9771
  }, 2e3);
9771
9772
  })();
9772
9773
  };