@wix/ditto-codegen-public 1.0.251 → 1.0.252
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/dist/out.js +3 -3
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -342033,14 +342033,14 @@ var alwaysOnLoop = async () => {
|
|
|
342033
342033
|
while (true) {
|
|
342034
342034
|
try {
|
|
342035
342035
|
if (context_1.ctx.hasActiveJobs()) {
|
|
342036
|
-
|
|
342036
|
+
console.log(`[Loop] Local active job in progress. Sleeping ${ACTIVE_JOB_SLEEP_MS}ms`);
|
|
342037
342037
|
await delay(ACTIVE_JOB_SLEEP_MS);
|
|
342038
342038
|
continue;
|
|
342039
342039
|
}
|
|
342040
342040
|
const jobs = await codeGenerationService_1.codeGenerationService.fetchPendingJobs();
|
|
342041
|
-
|
|
342041
|
+
console.log("[Loop] Fetched pending jobs", { count: jobs.length });
|
|
342042
342042
|
if (jobs.length === 0) {
|
|
342043
|
-
|
|
342043
|
+
console.log("[Loop] No pending jobs, sleeping");
|
|
342044
342044
|
await delay(NO_JOBS_SLEEP_MS);
|
|
342045
342045
|
continue;
|
|
342046
342046
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.252",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"@wix/ditto-codegen": "1.0.0",
|
|
29
29
|
"esbuild": "^0.27.2"
|
|
30
30
|
},
|
|
31
|
-
"falconPackageHash": "
|
|
31
|
+
"falconPackageHash": "440320b106ee430e2c3bb85f19cd64467981a0c3ee4ab38f19e7b8c6"
|
|
32
32
|
}
|