Skip to content

Commit

Permalink
dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
j50n committed Mar 15, 2022
1 parent 1b2befe commit b2c033e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deps-test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/[email protected]/testing/asserts.ts";
export * from "https://deno.land/x/[email protected].7/mod.ts";
export * from "https://deno.land/x/[email protected].8/mod.ts";
export * from "https://deno.land/[email protected]/fmt/colors.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 @@ -2,7 +2,7 @@

import { Answer, Question } from "./common-json-defs.ts";
import * as proc from "../../mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].7/mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].8/mod.ts";
import { blue, red } from "https://deno.land/[email protected]/fmt/colors.ts";

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/pushiterable/humanize-numbers.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env -S deno run --quiet
import "https://deno.land/x/[email protected]/romanNumerals.ts";
import "https://deno.land/x/[email protected]/numberToWords.ts";
import { asynciter } from "https://deno.land/x/[email protected].7/mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].8/mod.ts";
import { bytesToTextLines, readerToBytesUnbuffered } from "../../mod.ts";
import { Answer, Question } from "./common-json-defs.ts";

Expand Down
2 changes: 1 addition & 1 deletion examples/warandpeace/countwords.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --quiet --allow-run=gunzip,sort,uniq,grep,wc

import { asynciter } from "https://deno.land/x/[email protected].7/mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].8/mod.ts";
import * as proc from "../../mod.ts";

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/warandpeace/countwords2.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --quiet --allow-run=bash,gunzip

import { asynciter } from "https://deno.land/x/[email protected].7/mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].8/mod.ts";
import * as proc from "../../mod.ts";

/* Chain errors. */
Expand Down

0 comments on commit b2c033e

Please sign in to comment.