printable-shell-command 0.3.2 → 0.3.3

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "printable-shell-command",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "main": "./src/index.ts",
5
5
  "type": "module",
6
6
  "exports": {
package/src/index.ts CHANGED
@@ -422,7 +422,8 @@ export class PrintableShellCommand {
422
422
  "stdio"
423
423
  >,
424
424
  ): Response {
425
- return new Response(this.spawnBun(options).stdout);
425
+ // biome-ignore lint/suspicious/noExplicitAny: Avoid breaking the lib check when used without `@types/bun`.
426
+ return new Response((this.spawnBun(options) as any).stdout);
426
427
  }
427
428
 
428
429
  /** Equivalent to: