@pipelab/cli 2.0.0-beta.15 → 2.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/index.mjs +3 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -67222,6 +67222,7 @@ const builtInPlugins = async (options) => {
|
|
|
67222
67222
|
const { usePlugins } = await import("./src-XVe3IQMi.mjs");
|
|
67223
67223
|
const { registerPlugins } = usePlugins();
|
|
67224
67224
|
const { webSocketServer } = await import("./src-CHr-wGNr.mjs");
|
|
67225
|
+
webSocketServer.broadcast("startup:progress", { type: "ready" });
|
|
67225
67226
|
(async () => {
|
|
67226
67227
|
const totalStart = Date.now();
|
|
67227
67228
|
const pluginsToLoad = /* @__PURE__ */ new Map();
|
|
@@ -67266,7 +67267,7 @@ const builtInPlugins = async (options) => {
|
|
|
67266
67267
|
console.log(`[Plugins] All startup plugins loaded in ${Date.now() - totalStart}ms.`);
|
|
67267
67268
|
sendStartupProgress("All plugins loaded.");
|
|
67268
67269
|
setTimeout(() => {
|
|
67269
|
-
webSocketServer.broadcast("startup:progress", { type: "
|
|
67270
|
+
webSocketServer.broadcast("startup:progress", { type: "done" });
|
|
67270
67271
|
}, 2e3);
|
|
67271
67272
|
})();
|
|
67272
67273
|
};
|
|
@@ -68475,7 +68476,7 @@ async function runPipelineCommand(file, options, version) {
|
|
|
68475
68476
|
}
|
|
68476
68477
|
//#endregion
|
|
68477
68478
|
//#region package.json
|
|
68478
|
-
var version$2 = "2.0.0-beta.
|
|
68479
|
+
var version$2 = "2.0.0-beta.16";
|
|
68479
68480
|
//#endregion
|
|
68480
68481
|
//#region src/paths.ts
|
|
68481
68482
|
const getDefaultUserDataPath = () => {
|