milkio 0.0.26 → 0.0.28

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.
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.26",
5
+ "version": "0.0.28",
6
6
  "peerDependencies": {
7
7
  "typescript": "^5.4.2"
8
8
  },
@@ -238,7 +238,9 @@ 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().nothrow()
241
+ try {
242
+ await $`bun run ./node_modules/typescript/bin/tsc --outDir "./packages/client/project"`.quiet()
243
+ } catch (error) {}
242
244
  await Bun.build({
243
245
  entrypoints: ["./packages/client/index.ts"],
244
246
  outdir: "./packages/client/dist",