@tutti-os/app-release-tools 0.0.14 → 0.0.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.
|
@@ -352,8 +352,8 @@ function validateCLIHandler(handler, label) {
|
|
|
352
352
|
throw new Error(`${label}.path must start with /tutti/cli/`);
|
|
353
353
|
}
|
|
354
354
|
const timeoutMs = handler.timeoutMs ?? 30000;
|
|
355
|
-
if (!Number.isInteger(timeoutMs) || timeoutMs < 1000 || timeoutMs >
|
|
356
|
-
throw new Error(`${label}.timeoutMs must be between 1000 and
|
|
355
|
+
if (!Number.isInteger(timeoutMs) || timeoutMs < 1000 || timeoutMs > 600000) {
|
|
356
|
+
throw new Error(`${label}.timeoutMs must be between 1000 and 600000`);
|
|
357
357
|
}
|
|
358
358
|
}
|
|
359
359
|
|