Skip to content

Commit

Permalink
feat: upgrade to deno_std 0.201 internally (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Sep 8, 2023
1 parent 245bcbb commit 621c474
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions src/deps.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ export {
assertRejects,
assertStringIncludes,
assertThrows,
} from "https://deno.land/std@0.182.0/testing/asserts.ts";
export { readerFromStreamReader } from "https://deno.land/std@0.182.0/streams/reader_from_stream_reader.ts";
export { writableStreamFromWriter } from "https://deno.land/std@0.182.0/streams/writable_stream_from_writer.ts";
export { serve } from "https://deno.land/std@0.182.0/http/server.ts";
} from "https://deno.land/std@0.201.0/testing/asserts.ts";
export { readerFromStreamReader } from "https://deno.land/std@0.201.0/streams/reader_from_stream_reader.ts";
export { writableStreamFromWriter } from "https://deno.land/std@0.201.0/streams/writable_stream_from_writer.ts";
export { serve } from "https://deno.land/std@0.201.0/http/server.ts";

/**
* Creates a temporary directory, changes the cwd to this directory,
Expand Down
30 changes: 15 additions & 15 deletions src/deps.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
export * as colors from "https://deno.land/std@0.182.0/fmt/colors.ts";
export * as fs from "https://deno.land/std@0.182.0/fs/mod.ts";
export { Buffer } from "https://deno.land/std@0.182.0/io/buffer.ts";
export { BufReader } from "https://deno.land/std@0.182.0/io/buf_reader.ts";
export * as path from "https://deno.land/std@0.182.0/path/mod.ts";
export { readAll } from "https://deno.land/std@0.182.0/streams/read_all.ts";
export { readerFromStreamReader } from "https://deno.land/std@0.182.0/streams/reader_from_stream_reader.ts";
export { writeAll, writeAllSync } from "https://deno.land/std@0.182.0/streams/write_all.ts";
export * as colors from "https://deno.land/std@0.201.0/fmt/colors.ts";
export * as fs from "https://deno.land/std@0.201.0/fs/mod.ts";
export { Buffer } from "https://deno.land/std@0.201.0/io/buffer.ts";
export { BufReader } from "https://deno.land/std@0.201.0/io/buf_reader.ts";
export * as path from "https://deno.land/std@0.201.0/path/mod.ts";
export { readAll } from "https://deno.land/std@0.201.0/streams/read_all.ts";
export { readerFromStreamReader } from "https://deno.land/std@0.201.0/streams/reader_from_stream_reader.ts";
export { writeAll, writeAllSync } from "https://deno.land/std@0.201.0/streams/write_all.ts";
export { outdent } from "https://deno.land/x/outdent@v0.8.0/src/index.ts";
export { RealEnvironment as DenoWhichRealEnvironment, which, whichSync } from "https://deno.land/x/which@0.3.0/mod.ts";

export { emptyDir, emptyDirSync } from "https://deno.land/std@0.182.0/fs/empty_dir.ts";
export { ensureDir, ensureDirSync } from "https://deno.land/std@0.182.0/fs/ensure_dir.ts";
export { ensureFile, ensureFileSync } from "https://deno.land/std@0.182.0/fs/ensure_file.ts";
export { expandGlob, type ExpandGlobOptions, expandGlobSync } from "https://deno.land/std@0.182.0/fs/expand_glob.ts";
export { move, moveSync } from "https://deno.land/std@0.182.0/fs/move.ts";
export { copy, copySync } from "https://deno.land/std@0.182.0/fs/copy.ts";
export { walk, type WalkEntry, WalkError, type WalkOptions, walkSync } from "https://deno.land/std@0.182.0/fs/walk.ts";
export { emptyDir, emptyDirSync } from "https://deno.land/std@0.201.0/fs/empty_dir.ts";
export { ensureDir, ensureDirSync } from "https://deno.land/std@0.201.0/fs/ensure_dir.ts";
export { ensureFile, ensureFileSync } from "https://deno.land/std@0.201.0/fs/ensure_file.ts";
export { expandGlob, type ExpandGlobOptions, expandGlobSync } from "https://deno.land/std@0.201.0/fs/expand_glob.ts";
export { move, moveSync } from "https://deno.land/std@0.201.0/fs/move.ts";
export { copy, copySync } from "https://deno.land/std@0.201.0/fs/copy.ts";
export { walk, type WalkEntry, WalkError, type WalkOptions, walkSync } from "https://deno.land/std@0.201.0/fs/walk.ts";

0 comments on commit 621c474

Please sign in to comment.