@orkestrel/workflow 0.0.12 → 0.0.14
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/src/browser/index.d.ts +3 -3
- package/package.json +19 -16
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { SchedulerInterface } from '
|
|
2
|
-
import { SchedulerOptions } from '
|
|
3
|
-
import { SchedulerPriority } from '
|
|
1
|
+
import { SchedulerInterface } from '@orkestrel/workflow';
|
|
2
|
+
import { SchedulerOptions } from '@orkestrel/workflow';
|
|
3
|
+
import { SchedulerPriority } from '@orkestrel/workflow';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* The browser {@link SchedulerInterface} — the browser-native cooperative-yield backend
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/workflow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"description": "A typed workflow engine for the @orkestrel line — a serializable Workflow → Phase → Task tree run by a composed runner on a cooperative scheduler. Part of the @orkestrel line.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"orchestration",
|
|
@@ -83,30 +83,33 @@
|
|
|
83
83
|
"build:src:core": "vite build --config configs/src/vite.core.config.ts && npm run copy dist/src/core/index.d.ts dist/src/core/index.d.cts",
|
|
84
84
|
"build:src:browser": "vite build --config configs/src/vite.browser.config.ts",
|
|
85
85
|
"build:src:server": "vite build --config configs/src/vite.server.config.ts && npm run copy dist/src/server/index.d.ts dist/src/server/index.d.cts",
|
|
86
|
+
"prepack": "npm run build",
|
|
86
87
|
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
|
|
87
88
|
},
|
|
88
89
|
"dependencies": {
|
|
89
|
-
"@orkestrel/abort": "^0.0.
|
|
90
|
-
"@orkestrel/budget": "^0.0.
|
|
91
|
-
"@orkestrel/contract": "^0.0.
|
|
92
|
-
"@orkestrel/database": "^0.0.
|
|
93
|
-
"@orkestrel/emitter": "^0.0.
|
|
94
|
-
"@orkestrel/queue": "^0.0.
|
|
95
|
-
"@orkestrel/timeout": "^0.0.
|
|
90
|
+
"@orkestrel/abort": "^0.0.7",
|
|
91
|
+
"@orkestrel/budget": "^0.0.7",
|
|
92
|
+
"@orkestrel/contract": "^0.0.13",
|
|
93
|
+
"@orkestrel/database": "^0.0.11",
|
|
94
|
+
"@orkestrel/emitter": "^0.0.7",
|
|
95
|
+
"@orkestrel/queue": "^0.0.10",
|
|
96
|
+
"@orkestrel/timeout": "^0.0.7"
|
|
96
97
|
},
|
|
97
98
|
"devDependencies": {
|
|
98
|
-
"@microsoft/api-extractor": "^7.
|
|
99
|
-
"@orkestrel/guide": "^0.0.
|
|
100
|
-
"@orkestrel/
|
|
99
|
+
"@microsoft/api-extractor": "^7.59.0",
|
|
100
|
+
"@orkestrel/guide": "^0.0.12",
|
|
101
|
+
"@orkestrel/probe": "^0.0.2",
|
|
102
|
+
"@orkestrel/scaffold": "^0.0.47",
|
|
103
|
+
"@orkestrel/test": "^0.0.8",
|
|
101
104
|
"@types/node": "^26.2.0",
|
|
102
|
-
"@vitest/browser-playwright": "^4.1.
|
|
103
|
-
"oxfmt": "^0.
|
|
104
|
-
"oxlint": "^1.
|
|
105
|
+
"@vitest/browser-playwright": "^4.1.11",
|
|
106
|
+
"oxfmt": "^0.64.0",
|
|
107
|
+
"oxlint": "^1.79.0",
|
|
105
108
|
"playwright": "^1.62.1",
|
|
106
109
|
"typescript": "^6.0.3",
|
|
107
|
-
"vite": "^8.2.
|
|
110
|
+
"vite": "^8.2.2",
|
|
108
111
|
"vite-plugin-dts": "^5.0.3",
|
|
109
|
-
"vitest": "^4.1.
|
|
112
|
+
"vitest": "^4.1.11"
|
|
110
113
|
},
|
|
111
114
|
"engines": {
|
|
112
115
|
"node": ">=22.12.0"
|