Skip to content

Commit

Permalink
upgraded dependencies; documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
j50n committed Oct 22, 2024
1 parent 4ba00e5 commit 7a520e5
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# proc

Run child processes and work with IO in Deno using `AsyncIterables` that work the way you expect them to.
Run child processes and work with IO in Deno using `AsyncIterables` that work
the way you expect them to.

Documentation:
[https://j50n.github.io/deno-proc/](https://j50n.github.io/deno-proc/).
Expand All @@ -15,4 +16,3 @@ await proc.run("ls", "-la").toStdout();

The API is stabilizing and moving toward a 1.0 release. Documentation is a work
in progress.

2 changes: 1 addition & 1 deletion dev/deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * as path from "../tests/deps/path.ts";
export * as colors from "https://deno.land/std@0.224.0/fmt/colors.ts";
export * as colors from "../src/deps/colors.ts";
2 changes: 1 addition & 1 deletion dev/read.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { enumerate } from "https://deno.land/x/proc@0.21.10/mod.ts";
import { enumerate } from "https://deno.land/x/proc@0.22.0/mod.ts";

for await (const line of enumerate(Deno.stdin.readable).lines) {
console.log(line);
Expand Down
2 changes: 1 addition & 1 deletion site/scripts/process/output.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { run } from "https://deno.land/x/proc@0.21.10/mod.ts";
import { run } from "https://deno.land/x/proc@0.22.0/mod.ts";

await run("echo", "Hello, world.").forEach((it) => console.dir(it));

Expand Down
1 change: 0 additions & 1 deletion tests/deps/asynciter.ts

This file was deleted.

2 changes: 1 addition & 1 deletion tests/deps/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";
export * from "jsr:@std/fmt@1.0.2/colors";
2 changes: 1 addition & 1 deletion tests/deps/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.224.0/path/mod.ts";
export * from "jsr:@std/path@1.0.6";
2 changes: 1 addition & 1 deletion tests/deps/streams.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.224.0/streams/mod.ts";
export * from "jsr:@std/streams@1.0.7";
2 changes: 1 addition & 1 deletion tools/deps/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";
export * from "jsr:@std/fmt@1.0.2/colors";
2 changes: 1 addition & 1 deletion tools/deps/crypto.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.224.0/crypto/mod.ts";
export * from "jsr:@std/crypto@1.0.3";
2 changes: 1 addition & 1 deletion tools/deps/encode.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.224.0/encoding/hex.ts";
export * from "jsr:@std/encoding@1.0.5/hex";
2 changes: 1 addition & 1 deletion tools/deps/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.224.0/path/mod.ts";
export * from "jsr:@std/path@1.0.6";
2 changes: 1 addition & 1 deletion tools/deps/retry.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.224.0/async/retry.ts";
export * from "jsr:@std/async@1.0.6/retry";
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"0.22.0"}
{"version":"0.22.1"}

0 comments on commit 7a520e5

Please sign in to comment.