Skip to content

Commit

Permalink
Update std to 0.215.0 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
smack0007 authored Feb 14, 2024
1 parent 972e4ea commit 97380fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * as asserts from "https://deno.land/std@0.173.0/testing/asserts.ts";
export * as dotenv from "https://deno.land/std@0.173.0/dotenv/mod.ts";
export * as colors from "https://deno.land/std@0.173.0/fmt/colors.ts";
export * as fs from "https://deno.land/std@0.173.0/fs/mod.ts";
export * as path from "https://deno.land/std@0.173.0/path/mod.ts";
export * as asserts from "https://deno.land/std@0.215.0/testing/asserts.ts";
export * as dotenv from "https://deno.land/std@0.215.0/dotenv/mod.ts";
export * as colors from "https://deno.land/std@0.215.0/fmt/colors.ts";
export * as fs from "https://deno.land/std@0.215.0/fs/mod.ts";
export * as path from "https://deno.land/std@0.215.0/path/mod.ts";
4 changes: 2 additions & 2 deletions shared/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export const REPO_URL = "https://deno.land/x/sdl_ts";
export const ROOT_PATH = new URL(import.meta.url).pathname
.replaceAll("/", IS_WINDOWS ? "\\" : "/")
.substring(IS_WINDOWS ? 1 : 0)
.split(path.SEP)
.split(path.SEPARATOR)
.slice(0, -2)
.join(path.SEP);
.join(path.SEPARATOR);

export const ASSETS_PATH = path.join(ROOT_PATH, "assets");

Expand Down

0 comments on commit 97380fd

Please sign in to comment.