Skip to content

Commit

Permalink
Merge pull request #38 from thefrontside/taras-patch-1
Browse files Browse the repository at this point in the history
added missing dependency information
  • Loading branch information
taras authored Jan 7, 2025
2 parents 5c220af + 74e5e2d commit 1f743ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 0 additions & 3 deletions tinyexec/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@
"name": "@effection-contrib/tinyexec",
"version": "0.1.0",
"exports": "./mod.ts",
"imports": {
"tinyexec": "npm:[email protected]"
},
"license": "MIT"
}
7 changes: 6 additions & 1 deletion tinyexec/tinyexec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ import {
stream,
useAbortSignal,
} from "npm:[email protected]";
import { type KillSignal, type Options, type Output, x as $x } from "tinyexec";
import {
type KillSignal,
type Options,
type Output,
x as $x,
} from "npm:[email protected]";

export interface TinyProcess extends Operation<Output> {
lines: Stream<string, void>;
Expand Down

0 comments on commit 1f743ae

Please sign in to comment.