Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade to deno_std 0.209 #198

Merged
merged 1 commit into from
Dec 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: upgrade to deno_std 0.209
dsherret committed Dec 17, 2023
commit d4e105885393835e7e40df6c47eeaf78bf06de01
8 changes: 4 additions & 4 deletions dprint.json
Original file line number Diff line number Diff line change
@@ -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
@@ -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,
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";