@ts-cloud/core 0.7.125 → 0.7.126
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/types.d.ts +10 -0
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1038,6 +1038,16 @@ export interface SiteConfig {
|
|
|
1038
1038
|
* that caused it. Unset by default.
|
|
1039
1039
|
*/
|
|
1040
1040
|
tasksMax?: number;
|
|
1041
|
+
/**
|
|
1042
|
+
* systemd `TimeoutStopSec` for this site's unit — how long it may take to
|
|
1043
|
+
* shut down before SIGTERM is escalated to SIGKILL.
|
|
1044
|
+
*
|
|
1045
|
+
* Raise it for a worker that drains on SIGTERM. The default of 90s suits a
|
|
1046
|
+
* server that can stop at once, and kills a long job mid-write: an ingest
|
|
1047
|
+
* worker that finishes its current shard before exiting was SIGKILLed doing
|
|
1048
|
+
* exactly that. Leave unset for anything that stops immediately.
|
|
1049
|
+
*/
|
|
1050
|
+
stopTimeout?: string;
|
|
1041
1051
|
/**
|
|
1042
1052
|
* SSR only. tar `--exclude` patterns applied when packaging the release
|
|
1043
1053
|
* tarball. Keep host-specific / heavy paths out of the artifact — most
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-cloud/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.126",
|
|
5
5
|
"description": "Core CloudFormation generation library for ts-cloud",
|
|
6
6
|
"author": "Chris Breuer <chris@stacksjs.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"typecheck": "tsc --noEmit"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@ts-cloud/aws-types": "0.7.
|
|
34
|
+
"@ts-cloud/aws-types": "0.7.126"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"typescript": "^7.0.2"
|