From dcdb673ae2b33aa1be409bce07462a0545659c13 Mon Sep 17 00:00:00 2001 From: Taras Mankovski Date: Mon, 6 Jan 2025 22:02:06 -0500 Subject: [PATCH 1/3] added missing dependency information --- tinyexec/tinyexec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyexec/tinyexec.ts b/tinyexec/tinyexec.ts index 639f61c..cacea39 100644 --- a/tinyexec/tinyexec.ts +++ b/tinyexec/tinyexec.ts @@ -6,7 +6,7 @@ import { stream, useAbortSignal, } from "npm:effection@3.0.3"; -import { type KillSignal, type Options, type Output, x as $x } from "tinyexec"; +import { type KillSignal, type Options, type Output, x as $x } from "npm:tinyexec@0.3.2"; export interface TinyProcess extends Operation { lines: Stream; From 10f9da38343713446f6c61be6438e43ae9093473 Mon Sep 17 00:00:00 2001 From: Taras Mankovski Date: Mon, 6 Jan 2025 22:03:28 -0500 Subject: [PATCH 2/3] Update deno.json --- tinyexec/deno.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/tinyexec/deno.json b/tinyexec/deno.json index 4e791b8..f5b3e76 100644 --- a/tinyexec/deno.json +++ b/tinyexec/deno.json @@ -2,8 +2,5 @@ "name": "@effection-contrib/tinyexec", "version": "0.1.0", "exports": "./mod.ts", - "imports": { - "tinyexec": "npm:tinyexec@0.3.0" - }, "license": "MIT" } From 74e5e2ddff3023fa85df4f803eca84e3880d6153 Mon Sep 17 00:00:00 2001 From: Taras Mankovski Date: Mon, 6 Jan 2025 22:05:13 -0500 Subject: [PATCH 3/3] Fixed formatting --- tinyexec/tinyexec.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tinyexec/tinyexec.ts b/tinyexec/tinyexec.ts index cacea39..2e36fae 100644 --- a/tinyexec/tinyexec.ts +++ b/tinyexec/tinyexec.ts @@ -6,7 +6,12 @@ import { stream, useAbortSignal, } from "npm:effection@3.0.3"; -import { type KillSignal, type Options, type Output, x as $x } from "npm:tinyexec@0.3.2"; +import { + type KillSignal, + type Options, + type Output, + x as $x, +} from "npm:tinyexec@0.3.2"; export interface TinyProcess extends Operation { lines: Stream;