milkio 0.0.25 → 0.0.27

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.
@@ -173,7 +173,6 @@ export function defineHttpHandler(app: MilkioApp, options: ExecuteHttpServerOpti
173
173
  await loggerSubmit(executeId)
174
174
  runtime.execute.executeIds.delete(executeId)
175
175
 
176
-
177
176
  return new Response(response.body, response)
178
177
  }
179
178
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "milkio",
3
3
  "type": "module",
4
4
  "module": "index.ts",
5
- "version": "0.0.25",
5
+ "version": "0.0.27",
6
6
  "peerDependencies": {
7
7
  "typescript": "^5.4.2"
8
8
  },
@@ -238,7 +238,7 @@ export default async () => {
238
238
  console.log(``)
239
239
 
240
240
  console.time(`Client Stage`)
241
- await $`bun run ./node_modules/typescript/bin/tsc --outDir "./packages/client/project"`.quiet()
241
+ await $`bun run ./node_modules/typescript/bin/tsc --outDir "./packages/client/project"`.quiet().throws(false)
242
242
  await Bun.build({
243
243
  entrypoints: ["./packages/client/index.ts"],
244
244
  outdir: "./packages/client/dist",