@orkestrel/workflow 0.0.10 → 0.0.12

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.
@@ -1,5 +1,5 @@
1
- import { SchedulerInterface } from '../core/index.ts';
2
- import { SchedulerOptions } from '../core/index.ts';
1
+ import { SchedulerInterface } from '@orkestrel/workflow';
2
+ import { SchedulerOptions } from '@orkestrel/workflow';
3
3
 
4
4
  /**
5
5
  * Create the Node-native cooperative-yield {@link SchedulerInterface} — `yield()` is a
@@ -1,5 +1,5 @@
1
- import { SchedulerInterface } from '../core/index.ts';
2
- import { SchedulerOptions } from '../core/index.ts';
1
+ import { SchedulerInterface } from '@orkestrel/workflow';
2
+ import { SchedulerOptions } from '@orkestrel/workflow';
3
3
 
4
4
  /**
5
5
  * Create the Node-native cooperative-yield {@link SchedulerInterface} — `yield()` is a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/workflow",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
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",
@@ -70,12 +70,13 @@
70
70
  "format": "oxfmt --config .oxfmtrc.json --write .",
71
71
  "format:check": "oxfmt --config .oxfmtrc.json --check .",
72
72
  "lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
73
- "test": "npm run test:src && npm run test:policy && npm run test:guides",
73
+ "test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides",
74
74
  "test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:browser --project src:server",
75
75
  "test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
76
76
  "test:src:browser": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:browser",
77
77
  "test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
78
78
  "test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
79
+ "test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
79
80
  "test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
80
81
  "build": "npm run clean && npm run build:src",
81
82
  "build:src": "npm run build:src:core && npm run build:src:browser && npm run build:src:server",
@@ -85,25 +86,25 @@
85
86
  "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
86
87
  },
87
88
  "dependencies": {
88
- "@orkestrel/abort": "^0.0.5",
89
- "@orkestrel/budget": "^0.0.5",
90
- "@orkestrel/contract": "^0.0.9",
91
- "@orkestrel/database": "^0.0.7",
92
- "@orkestrel/emitter": "^0.0.5",
93
- "@orkestrel/queue": "^0.0.7",
94
- "@orkestrel/timeout": "^0.0.5"
89
+ "@orkestrel/abort": "^0.0.6",
90
+ "@orkestrel/budget": "^0.0.6",
91
+ "@orkestrel/contract": "^0.0.11",
92
+ "@orkestrel/database": "^0.0.8",
93
+ "@orkestrel/emitter": "^0.0.6",
94
+ "@orkestrel/queue": "^0.0.8",
95
+ "@orkestrel/timeout": "^0.0.6"
95
96
  },
96
97
  "devDependencies": {
97
98
  "@microsoft/api-extractor": "^7.58.12",
98
- "@orkestrel/guide": "^0.0.8",
99
- "@orkestrel/scaffold": "^0.0.18",
100
- "@types/node": "^26.1.2",
99
+ "@orkestrel/guide": "^0.0.10",
100
+ "@orkestrel/scaffold": "^0.0.27",
101
+ "@types/node": "^26.2.0",
101
102
  "@vitest/browser-playwright": "^4.1.10",
102
- "oxfmt": "^0.62.0",
103
- "oxlint": "^1.77.0",
103
+ "oxfmt": "^0.63.0",
104
+ "oxlint": "^1.78.0",
104
105
  "playwright": "^1.62.1",
105
106
  "typescript": "^6.0.3",
106
- "vite": "^8.2.0",
107
+ "vite": "^8.2.1",
107
108
  "vite-plugin-dts": "^5.0.3",
108
109
  "vitest": "^4.1.10"
109
110
  },