Skip to content

Commit

Permalink
Now imports Peach from a CDN
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrannell1 committed Jul 1, 2023
1 parent a15728b commit 5376b8a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/prism.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as SubEdit from "../src/mod.ts";
import * as Peach from "../../peach.ts/src/mod.ts";
import * as Peach from "https://deno.land/x/peach_ts@0.2.0/src/mod.ts";
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";

const sampleNumbers = Peach.String.from(
Expand Down
2 changes: 1 addition & 1 deletion src/prisms.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as Peach from "../../peach.ts/src/mod.ts";
import * as Peach from "https://deno.land/x/peach_ts@0.2.0/src/mod.ts";
import * as SubEdit from "./mod.ts";
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/traversal.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as SubEdit from "../src/mod.ts";
import * as Peach from "../../peach.ts/src/mod.ts";
import * as Peach from "https://deno.land/x/peach_ts@0.2.0/src/mod.ts";
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";

const sampleNumbers = Peach.String.from(
Expand Down
2 changes: 1 addition & 1 deletion src/traversals.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as Peach from "../../peach.ts/src/mod.ts";
import * as Peach from "https://deno.land/x/peach_ts@0.2.0/src/mod.ts";
import * as SubEdit from "./mod.ts";
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/fuzz.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as Peach from "../../peach.ts/src/mod.ts";
import * as Peach from "https://deno.land/x/peach_ts@0.2.0/src/mod.ts";
import * as SubEdit from "../src/mod.ts";
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";

Expand Down

0 comments on commit 5376b8a

Please sign in to comment.