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.
- package/package.json +1 -1
- package/src/index.ts +2 -1
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -422,7 +422,8 @@ export class PrintableShellCommand {
|
|
|
422
422
|
"stdio"
|
|
423
423
|
>,
|
|
424
424
|
): Response {
|
|
425
|
-
|
|
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:
|