@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 +9 -0
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/plugins-registry.ts +5 -1
package/CHANGELOG.md
CHANGED
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: "
|
|
9770
|
+
webSocketServer.broadcast("startup:progress", { type: "done" });
|
|
9770
9771
|
}, 2e3);
|
|
9771
9772
|
})();
|
|
9772
9773
|
};
|