@keystrokehq/scheduler 0.1.28 → 0.1.30
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/README.md +2 -2
- package/package.json +5 -6
package/README.md
CHANGED
|
@@ -35,11 +35,11 @@ flowchart TB
|
|
|
35
35
|
scheduler --> trigger
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
**Allowed runtime deps:** `database`, `trigger`, `pg-boss`, `cron-
|
|
38
|
+
**Allowed runtime deps:** `database`, `trigger`, `pg-boss`, `cron-parser` (via trigger).
|
|
39
39
|
|
|
40
40
|
**Forbidden:** `runtime`, `workflow`, `agent`, `action`, `config`, `build`, `cli`, integrations, HTTP frameworks. Scheduler must stay callable from runtime without circular imports.
|
|
41
41
|
|
|
42
|
-
**Depends on:** `database`, `trigger`, `pg-boss`, `cron-
|
|
42
|
+
**Depends on:** `database`, `trigger`, `pg-boss`, `cron-parser`.
|
|
43
43
|
|
|
44
44
|
**Used by:** `runtime` and `worker` (embedded worker + schedule ticker).
|
|
45
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/scheduler",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"registry": "https://registry.npmjs.org"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"cron-schedule": "^6.0.0",
|
|
36
35
|
"pg-boss": "^12.18.2"
|
|
37
36
|
},
|
|
38
37
|
"devDependencies": {
|
|
@@ -41,16 +40,16 @@
|
|
|
41
40
|
"tsdown": "^0.22.0",
|
|
42
41
|
"typescript": "^6.0.3",
|
|
43
42
|
"vitest": "^4.1.7",
|
|
44
|
-
"@keystrokehq/database": "0.0.
|
|
43
|
+
"@keystrokehq/database": "0.0.148",
|
|
45
44
|
"@keystrokehq/oxlint-config": "0.0.4",
|
|
46
|
-
"@keystrokehq/trigger": "0.0.
|
|
45
|
+
"@keystrokehq/trigger": "0.0.180",
|
|
47
46
|
"@keystrokehq/tsconfig": "0.0.3",
|
|
48
47
|
"@keystrokehq/tsdown-config": "0.0.5",
|
|
49
48
|
"@keystrokehq/vitest-config": "0.0.7"
|
|
50
49
|
},
|
|
51
50
|
"peerDependencies": {
|
|
52
|
-
"@keystrokehq/database": "0.0.
|
|
53
|
-
"@keystrokehq/trigger": "0.0.
|
|
51
|
+
"@keystrokehq/database": "0.0.148",
|
|
52
|
+
"@keystrokehq/trigger": "0.0.180"
|
|
54
53
|
},
|
|
55
54
|
"peerDependenciesMeta": {
|
|
56
55
|
"@keystrokehq/database": {
|