@orkestrel/workflow 0.0.11 → 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.11",
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",
@@ -96,7 +97,7 @@
96
97
  "devDependencies": {
97
98
  "@microsoft/api-extractor": "^7.58.12",
98
99
  "@orkestrel/guide": "^0.0.10",
99
- "@orkestrel/scaffold": "^0.0.26",
100
+ "@orkestrel/scaffold": "^0.0.27",
100
101
  "@types/node": "^26.2.0",
101
102
  "@vitest/browser-playwright": "^4.1.10",
102
103
  "oxfmt": "^0.63.0",