Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/core/src/classify-error.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ describe('classifyRunError', () => {
});

it('classifies HookConflictError as USER_ERROR (duplicate token is user mistake)', () => {
expect(
classifyRunError(new HookConflictError('my-token'))
).toBe(RUN_ERROR_CODES.USER_ERROR);
expect(classifyRunError(new HookConflictError('my-token'))).toBe(
RUN_ERROR_CODES.USER_ERROR
);
});
});
3 changes: 1 addition & 2 deletions packages/core/src/serialization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,7 @@ export class WorkflowServerWritableStream extends WritableStream<Uint8Array> {
// unsettled promise because the cleared timer will never fire.
const waiters = flushWaiters;
flushWaiters = [];
const abortError =
reason ?? new Error("Stream aborted");
const abortError = reason ?? new Error('Stream aborted');
for (const w of waiters) w.reject(abortError);
},
});
Expand Down
4 changes: 2 additions & 2 deletions packages/nest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
}
},
"devDependencies": {
"@nestjs/common": "^11.0.17",
"@nestjs/core": "^11.0.1",
"@nestjs/common": "^11.1.17",
"@nestjs/core": "^11.1.17",
"@types/node": "catalog:",
"@workflow/tsconfig": "workspace:*",
"typescript": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@types/semver": "7.7.1",
"@types/watchpack": "2.4.4",
"@workflow/tsconfig": "workspace:*",
"next": "16.1.6"
"next": "16.2.1"
},
"peerDependencies": {
"next": ">13"
Expand Down
4 changes: 3 additions & 1 deletion packages/nitro/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export default {
nitro.options.externals ||= {};
nitro.options.externals.external ||= [];
const outDir = join(nitro.options.buildDir, 'workflow');
nitro.options.externals.external.push((id) => id.startsWith(outDir));
nitro.options.externals.external.push((id: string) =>
id.startsWith(outDir)
);
}

// Add tsConfig plugin
Expand Down
6 changes: 3 additions & 3 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"clean": "nuxi cleanup && rm -rf dist/"
},
"dependencies": {
"@nuxt/kit": "4.3.1",
"@nuxt/kit": "4.4.2",
"@workflow/nitro": "workspace:*"
},
"devDependencies": {
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.3.1",
"@nuxt/schema": "4.4.2",
"@types/node": "catalog:",
"@workflow/tsconfig": "workspace:*",
"nuxt": "4.0.0"
"nuxt": "4.4.2"
}
}
7,310 changes: 3,102 additions & 4,208 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion workbench/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"start": "node .output/server/index.mjs"
},
"dependencies": {
"express": "^5.1.0",
"express": "^5.2.1",
"nitro": "catalog:"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion workbench/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"start": "node .output/server/index.mjs"
},
"dependencies": {
"fastify": "^5.6.2",
"fastify": "^5.8.2",
"nitro": "catalog:"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion workbench/hono/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"workflow": "workspace:*",
"@workflow/ai": "workspace:*",
"ai": "catalog:",
"hono": "^4.9.10",
"hono": "^4.12.8",
"lodash.chunk": "^4.2.0",
"nitro": "catalog:",
"openai": "^6.6.0",
Expand Down
8 changes: 4 additions & 4 deletions workbench/nest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"node": ">=20.0.0"
},
"dependencies": {
"@nestjs/common": "^11.0.17",
"@nestjs/core": "^11.0.1",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/common": "^11.1.17",
"@nestjs/core": "^11.1.17",
"@nestjs/platform-express": "^11.1.17",
"@workflow/nest": "workspace:*",
"@workflow/world-postgres": "workspace:*",
"ai": "catalog:",
"express": "^5.1.0",
"express": "^5.2.1",
"lodash.chunk": "^4.2.0",
"openai": "^6.1.0",
"reflect-metadata": "^0.2.2",
Expand Down
2 changes: 1 addition & 1 deletion workbench/nextjs-turbopack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"mixpart": "0.0.4",
"motion": "^12.29.0",
"nanoid": "5.1.6",
"next": "16.1.6",
"next": "16.2.1",
"openai": "6.9.1",
"radix-ui": "1.4.3",
"react": "19.2.4",
Expand Down
2 changes: 1 addition & 1 deletion workbench/nextjs-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"mixpart": "0.0.4",
"motion": "^12.29.0",
"nanoid": "5.1.6",
"next": "16.1.6",
"next": "16.2.1",
"openai": "6.9.1",
"radix-ui": "1.4.3",
"react": "19.2.4",
Expand Down
2 changes: 1 addition & 1 deletion workbench/nitro-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"ai": "catalog:",
"h3": "^1.15.4",
"lodash.chunk": "^4.2.0",
"nitropack": "^2.12.7",
"nitropack": "^2.13.1",
"openai": "^6.6.0",
"zod": "catalog:"
}
Expand Down
2 changes: 1 addition & 1 deletion workbench/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"ai": "catalog:",
"h3": "^1.15.4",
"lodash.chunk": "^4.2.0",
"nuxt": "^4.1.3",
"nuxt": "^4.4.2",
"openai": "^6.6.0",
"zod": "catalog:"
},
Expand Down
8 changes: 4 additions & 4 deletions workbench/sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/kit": "^2.43.2",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^6.2.0",
"@types/lodash.chunk": "^4.2.9",
"@workflow/world-postgres": "workspace:*",
"svelte": "^5.39.5",
"svelte": "^5.54.0",
"svelte-check": "^4.3.2",
"typescript": "^5.9.2",
"vite": "^7.1.7",
Expand All @@ -29,8 +29,8 @@
"@ai-sdk/react": "2.0.76",
"@node-rs/xxhash": "1.7.6",
"@opentelemetry/api": "^1.9.0",
"@sveltejs/adapter-node": "^5.4.0",
"@sveltejs/adapter-vercel": "^6.1.1",
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/adapter-vercel": "^6.3.3",
"@swc/core": "catalog:",
"@vercel/otel": "^1.13.0",
"@workflow/ai": "workspace:*",
Expand Down
Loading