@orkestrel/worker 0.0.9 → 0.0.10

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.
Files changed (1) hide show
  1. package/package.json +19 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/worker",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "A typed, resource-backed job worker for the @orkestrel line — a Queue paired with a Pool over an execution seam, plus a node:worker_threads server surface for CPU-parallel jobs. Part of the @orkestrel line.",
5
5
  "keywords": [
6
6
  "async",
@@ -64,37 +64,41 @@
64
64
  "format": "oxfmt --config .oxfmtrc.json --write .",
65
65
  "format:check": "oxfmt --config .oxfmtrc.json --check .",
66
66
  "lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
67
- "test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides",
67
+ "test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:setup && npm run test:guides",
68
68
  "test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:server",
69
69
  "test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
70
70
  "test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
71
71
  "test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
72
72
  "test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
73
- "test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
73
+ "test:guides": "vitest run --config vite.config.ts --no-cache --reporter=dot --project guides",
74
74
  "build": "npm run clean && npm run build:src",
75
75
  "build:src": "npm run build:src:core && npm run build:src:server",
76
76
  "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",
77
77
  "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",
78
78
  "prepack": "npm run build",
79
- "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
79
+ "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release",
80
+ "test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
81
+ "test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
82
+ "test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
83
+ "test:setup": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup"
80
84
  },
81
85
  "dependencies": {
82
86
  "@orkestrel/contract": "^0.0.13",
83
- "@orkestrel/database": "^0.0.11",
84
- "@orkestrel/emitter": "^0.0.7",
85
- "@orkestrel/pool": "^0.0.8",
86
- "@orkestrel/queue": "^0.0.10"
87
+ "@orkestrel/database": "^0.0.12",
88
+ "@orkestrel/emitter": "^0.0.8",
89
+ "@orkestrel/pool": "^0.0.9",
90
+ "@orkestrel/queue": "^0.0.11"
87
91
  },
88
92
  "devDependencies": {
89
93
  "@microsoft/api-extractor": "^7.59.0",
90
- "@orkestrel/guide": "^0.0.12",
91
- "@orkestrel/probe": "^0.0.2",
92
- "@orkestrel/scaffold": "^0.0.47",
93
- "@orkestrel/test": "^0.0.8",
94
- "@types/node": "^26.2.0",
94
+ "@orkestrel/guide": "^0.0.15",
95
+ "@orkestrel/probe": "^0.0.9",
96
+ "@orkestrel/scaffold": "^0.0.57",
97
+ "@orkestrel/test": "^0.0.11",
98
+ "@types/node": "^26.4.0",
95
99
  "@vitest/browser-playwright": "^4.1.11",
96
- "oxfmt": "^0.64.0",
97
- "oxlint": "^1.79.0",
100
+ "oxfmt": "^0.65.0",
101
+ "oxlint": "^1.80.0",
98
102
  "typescript": "^6.0.3",
99
103
  "vite": "^8.2.2",
100
104
  "vite-plugin-dts": "^5.0.3",