diff --git a/README.md b/README.md index 52ee672..c00729a 100644 --- a/README.md +++ b/README.md @@ -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/). @@ -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. - diff --git a/dev/deps.ts b/dev/deps.ts index 1408537..0d6c93c 100644 --- a/dev/deps.ts +++ b/dev/deps.ts @@ -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"; diff --git a/dev/read.ts b/dev/read.ts index bf418dc..c623ccf 100644 --- a/dev/read.ts +++ b/dev/read.ts @@ -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); diff --git a/site/scripts/process/output.ts b/site/scripts/process/output.ts index 8444fd3..29a4e7b 100644 --- a/site/scripts/process/output.ts +++ b/site/scripts/process/output.ts @@ -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)); diff --git a/tests/deps/asynciter.ts b/tests/deps/asynciter.ts deleted file mode 100644 index a0dd60a..0000000 --- a/tests/deps/asynciter.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "https://deno.land/x/asynciter@0.0.18/mod.ts"; diff --git a/tests/deps/colors.ts b/tests/deps/colors.ts index 518918d..5a75eb3 100644 --- a/tests/deps/colors.ts +++ b/tests/deps/colors.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.224.0/fmt/colors.ts"; +export * from "jsr:@std/fmt@1.0.2/colors"; diff --git a/tests/deps/path.ts b/tests/deps/path.ts index 549a0b3..72f2e23 100644 --- a/tests/deps/path.ts +++ b/tests/deps/path.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.224.0/path/mod.ts"; +export * from "jsr:@std/path@1.0.6"; diff --git a/tests/deps/streams.ts b/tests/deps/streams.ts index e0bce01..19b8a0b 100644 --- a/tests/deps/streams.ts +++ b/tests/deps/streams.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.224.0/streams/mod.ts"; +export * from "jsr:@std/streams@1.0.7"; diff --git a/tools/deps/colors.ts b/tools/deps/colors.ts index 518918d..5a75eb3 100644 --- a/tools/deps/colors.ts +++ b/tools/deps/colors.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.224.0/fmt/colors.ts"; +export * from "jsr:@std/fmt@1.0.2/colors"; diff --git a/tools/deps/crypto.ts b/tools/deps/crypto.ts index f4cbb3c..3654496 100644 --- a/tools/deps/crypto.ts +++ b/tools/deps/crypto.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.224.0/crypto/mod.ts"; +export * from "jsr:@std/crypto@1.0.3"; diff --git a/tools/deps/encode.ts b/tools/deps/encode.ts index 8944707..d986580 100644 --- a/tools/deps/encode.ts +++ b/tools/deps/encode.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.224.0/encoding/hex.ts"; +export * from "jsr:@std/encoding@1.0.5/hex"; diff --git a/tools/deps/path.ts b/tools/deps/path.ts index 549a0b3..72f2e23 100644 --- a/tools/deps/path.ts +++ b/tools/deps/path.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.224.0/path/mod.ts"; +export * from "jsr:@std/path@1.0.6"; diff --git a/tools/deps/retry.ts b/tools/deps/retry.ts index e61220b..45123f6 100644 --- a/tools/deps/retry.ts +++ b/tools/deps/retry.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.224.0/async/retry.ts"; +export * from "jsr:@std/async@1.0.6/retry"; diff --git a/version.json b/version.json index 3af564e..ba6cbaf 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"0.22.0"} +{"version":"0.22.1"}