Skip to content

Commit

Permalink
Bump std from 0.97.0 to 0.186.0 (again) (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshcancode authored May 13, 2023
1 parent c328584 commit 34e7179
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions deno_dist/file-methods.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { existsSync } from "https://deno.land/std@0.97.0/fs/exists.ts";
export * as path from "https://deno.land/std@0.97.0/path/mod.ts";
export { existsSync } from "https://deno.land/std@0.186.0/fs/exists.ts";
export * as path from "https://deno.land/std@0.186.0/path/mod.ts";

export const readFileSync = Deno.readTextFileSync;
4 changes: 2 additions & 2 deletions src/file-methods.deno.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { existsSync } from "https://deno.land/std@0.97.0/fs/exists.ts"
export * as path from "https://deno.land/std@0.97.0/path/mod.ts"
export { existsSync } from "https://deno.land/std@0.186.0/fs/exists.ts"
export * as path from "https://deno.land/std@0.186.0/path/mod.ts"

export const readFileSync = Deno.readTextFileSync
2 changes: 1 addition & 1 deletion test/deno/basic.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.97.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import * as eta from "../../deno_dist/mod.ts";

Deno.test("simple render", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/deno/config.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.97.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import * as eta from "../../deno_dist/mod.ts";

Deno.test("Renders a simple template with default env", () => {
Expand Down
4 changes: 2 additions & 2 deletions test/deno/file-helpers.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assertEquals, assertThrows } from "https://deno.land/std@0.97.0/testing/asserts.ts";
import * as path from "https://deno.land/std@0.97.0/path/mod.ts";
import { assertEquals, assertThrows } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import * as path from "https://deno.land/std@0.186.0/path/mod.ts";
const __dirname = new URL(".", import.meta.url).pathname;

import { render, templates, compile } from "../../deno_dist/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/deno/helpers.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals, assertThrows } from "https://deno.land/std@0.97.0/testing/asserts.ts";
import { assertEquals, assertThrows } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import { render } from "../../deno_dist/mod.ts";

// SHOULD TEST COMMON ETA USAGE PATTERNS HERE
Expand Down

0 comments on commit 34e7179

Please sign in to comment.