Skip to content

Commit

Permalink
added exports and dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
j50n committed Mar 4, 2022
1 parent a0e631d commit e1c195e
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions deps-test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/std@0.127.0/testing/asserts.ts";
export * from "https://deno.land/std@0.128.0/testing/asserts.ts";
export * from "https://deno.land/x/[email protected]/mod.ts";
export * from "https://deno.land/std@0.127.0/fmt/colors.ts";
export * from "https://deno.land/std@0.128.0/fmt/colors.ts";
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/std@0.127.0/textproto/mod.ts";
export * from "https://deno.land/std@0.127.0/async/mod.ts";
export * from "https://deno.land/std@0.127.0/io/mod.ts";
export * from "https://deno.land/std@0.128.0/textproto/mod.ts";
export * from "https://deno.land/std@0.128.0/async/mod.ts";
export * from "https://deno.land/std@0.128.0/io/mod.ts";
2 changes: 1 addition & 1 deletion examples/pushiterable/example-of-pushiterable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { Answer, Question } from "./common-json-defs.ts";
import * as proc from "../../mod.ts";
import { asynciter } from "https://deno.land/x/[email protected]/mod.ts";
import { blue, red } from "https://deno.land/std@0.127.0/fmt/colors.ts";
import { blue, red } from "https://deno.land/std@0.128.0/fmt/colors.ts";

/**
* This demonstrates sending objects to and receiving objects from a child process
Expand Down
1 change: 1 addition & 0 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export * from "./runners/stderr-support.ts";
export * from "./runners/push-iterable.ts";
export {
bytesToTextLines,
dirname,
readerToBytes,
readerToBytesUnbuffered,
sleep,
Expand Down
4 changes: 4 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.19.0

- Add a few useful items to `mod.ts`.

## 0.18.0

This release contains breaking changes.
Expand Down
2 changes: 1 addition & 1 deletion runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function runner<A, B>(
return (group?: Group) => new RunnerImpl(group || globalGroup, input, output);
}

type StandardInputs =
export type StandardInputs =
| string
| Uint8Array
| string[]
Expand Down
2 changes: 1 addition & 1 deletion runners/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isWindows } from "https://deno.land/std@0.127.0/_util/os.ts";
import { isWindows } from "https://deno.land/std@0.128.0/_util/os.ts";

export const LINESEP: string = (() => {
if (isWindows) {
Expand Down
2 changes: 1 addition & 1 deletion runners/handlers/bytes.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.127.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.128.0/testing/asserts.ts";
import * as proc from "../../mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion runners/utility.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BufReader, BufWriter } from "../deps.ts";
import * as path from "https://deno.land/std@0.127.0/path/mod.ts";
import * as path from "https://deno.land/std@0.128.0/path/mod.ts";

export const DEFAULT_BUFFER_SIZE = 4096;

Expand Down

0 comments on commit e1c195e

Please sign in to comment.