Skip to content

Commit

Permalink
feat: upgrade to deno_std 0.209 (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Dec 17, 2023
1 parent a859163 commit a41ffe6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
8 changes: 4 additions & 4 deletions dprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
"**/*.generated.js"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.85.1.wasm",
"https://plugins.dprint.dev/json-0.17.4.wasm",
"https://plugins.dprint.dev/markdown-0.15.3.wasm",
"https://plugins.dprint.dev/typescript-0.88.7.wasm",
"https://plugins.dprint.dev/json-0.19.1.wasm",
"https://plugins.dprint.dev/markdown-0.16.3.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm",
"https://plugins.dprint.dev/exec-0.4.3.json@42343548b8022c99b1d750be6b894fe6b6c7ee25f72ae9f9082226dd2e515072"
"https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7"
]
}
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.201.0/assert/mod.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";
} from "https://deno.land/std@0.209.0/assert/mod.ts";
export { readerFromStreamReader } from "https://deno.land/std@0.209.0/streams/reader_from_stream_reader.ts";
export { writableStreamFromWriter } from "https://deno.land/std@0.209.0/streams/writable_stream_from_writer.ts";
export { serve } from "https://deno.land/std@0.209.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.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 * as colors from "https://deno.land/std@0.209.0/fmt/colors.ts";
export * as fs from "https://deno.land/std@0.209.0/fs/mod.ts";
export { Buffer } from "https://deno.land/std@0.209.0/io/buffer.ts";
export { BufReader } from "https://deno.land/std@0.209.0/io/buf_reader.ts";
export * as path from "https://deno.land/std@0.209.0/path/mod.ts";
export { readAll } from "https://deno.land/std@0.209.0/streams/read_all.ts";
export { readerFromStreamReader } from "https://deno.land/std@0.209.0/streams/reader_from_stream_reader.ts";
export { writeAll, writeAllSync } from "https://deno.land/std@0.209.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.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";
export { emptyDir, emptyDirSync } from "https://deno.land/std@0.209.0/fs/empty_dir.ts";
export { ensureDir, ensureDirSync } from "https://deno.land/std@0.209.0/fs/ensure_dir.ts";
export { ensureFile, ensureFileSync } from "https://deno.land/std@0.209.0/fs/ensure_file.ts";
export { expandGlob, type ExpandGlobOptions, expandGlobSync } from "https://deno.land/std@0.209.0/fs/expand_glob.ts";
export { move, moveSync } from "https://deno.land/std@0.209.0/fs/move.ts";
export { copy, copySync } from "https://deno.land/std@0.209.0/fs/copy.ts";
export { walk, type WalkEntry, WalkError, type WalkOptions, walkSync } from "https://deno.land/std@0.209.0/fs/walk.ts";

0 comments on commit a41ffe6

Please sign in to comment.