runwork 0.29.0 → 0.29.1

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -18997,7 +18997,7 @@ function createKeyboardListener() {
18997
18997
  }
18998
18998
 
18999
18999
  // src/generated/version.ts
19000
- var VERSION = "0.29.0";
19000
+ var VERSION = "0.29.1";
19001
19001
 
19002
19002
  // src/commands/dev.ts
19003
19003
  var exports_dev = {};
@@ -26365,6 +26365,7 @@ var SPACE_SIZE_LIMIT_BYTES = 300 * 1024 * 1024;
26365
26365
  var SPACE_PUSH_BATCH_BYTES = 75 * 1024 * 1024;
26366
26366
  var SPACE_FILE_SIZE_LIMIT_BYTES = SPACE_PUSH_BATCH_BYTES;
26367
26367
  var SPACE_SETTLE_MS = 90000;
26368
+ var SPACE_CLOCK_AHEAD_MS = 2000;
26368
26369
  var SPACE_THUMBNAIL_MAX_BYTES = 8 * 1024 * 1024;
26369
26370
  function formatBytes(bytes) {
26370
26371
  if (bytes < 1024)
@@ -27427,7 +27428,7 @@ function splitPlannedChanges(changes, rules) {
27427
27428
  continue;
27428
27429
  }
27429
27430
  const age = nowMs - Math.floor(change.mtimeMs ?? 0);
27430
- const unfinished = change.kind !== "remove" && rules.settle !== false && age >= 0 && age < SPACE_SETTLE_MS;
27431
+ const unfinished = change.kind !== "remove" && rules.settle !== false && age > -SPACE_CLOCK_AHEAD_MS && age < SPACE_SETTLE_MS;
27431
27432
  if (unfinished && !namedForSharing(change.path, shareNow)) {
27432
27433
  split.settling.push(change.path);
27433
27434
  continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "runwork",
3
- "version": "0.29.0",
3
+ "version": "0.29.1",
4
4
  "description": "CLI for Runwork: develop, preview, and deploy Runwork apps from your local machine.",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Runwork, Inc. <info@runwork.ai> (https://www.runwork.ai)",