Skip to content

Commit

Permalink
build(deps): bump deno.land/std from 0.204.0 to 0.205.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 3, 2023
1 parent 28b7d27 commit b578442
Show file tree
Hide file tree
Showing 8 changed files with 150 additions and 150 deletions.
252 changes: 126 additions & 126 deletions deno.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions lib/std/assert.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export { assertArrayIncludes } from "https://deno.land/std@0.204.0/assert/assert_array_includes.ts";
export { assertEquals } from "https://deno.land/std@0.204.0/assert/assert_equals.ts";
export { assertExists } from "https://deno.land/std@0.204.0/assert/assert_exists.ts";
export { assertNotEquals } from "https://deno.land/std@0.204.0/assert/assert_not_equals.ts";
export { assertObjectMatch } from "https://deno.land/std@0.204.0/assert/assert_object_match.ts";
export { assertThrows } from "https://deno.land/std@0.204.0/assert/assert_throws.ts";
export { AssertionError } from "https://deno.land/std@0.204.0/assert/assertion_error.ts";
export { assertArrayIncludes } from "https://deno.land/std@0.205.0/assert/assert_array_includes.ts";
export { assertEquals } from "https://deno.land/std@0.205.0/assert/assert_equals.ts";
export { assertExists } from "https://deno.land/std@0.205.0/assert/assert_exists.ts";
export { assertNotEquals } from "https://deno.land/std@0.205.0/assert/assert_not_equals.ts";
export { assertObjectMatch } from "https://deno.land/std@0.205.0/assert/assert_object_match.ts";
export { assertThrows } from "https://deno.land/std@0.205.0/assert/assert_throws.ts";
export { AssertionError } from "https://deno.land/std@0.205.0/assert/assertion_error.ts";
6 changes: 3 additions & 3 deletions lib/std/collections.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { distinct } from "https://deno.land/std@0.204.0/collections/distinct.ts";
export { maxBy } from "https://deno.land/std@0.204.0/collections/max_by.ts";
export { filterKeys } from "https://deno.land/std@0.204.0/collections/filter_keys.ts";
export { distinct } from "https://deno.land/std@0.205.0/collections/distinct.ts";
export { maxBy } from "https://deno.land/std@0.205.0/collections/max_by.ts";
export { filterKeys } from "https://deno.land/std@0.205.0/collections/filter_keys.ts";
4 changes: 2 additions & 2 deletions lib/std/fs.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { existsSync } from "https://deno.land/std@0.204.0/fs/exists.ts";
export { existsSync } from "https://deno.land/std@0.205.0/fs/exists.ts";
export {
detect as detectEOL,
EOL,
format as formatEOL,
} from "https://deno.land/std@0.204.0/fs/eol.ts";
} from "https://deno.land/std@0.205.0/fs/eol.ts";
2 changes: 1 addition & 1 deletion lib/std/jsonc.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { parse } from "https://deno.land/std@0.204.0/jsonc/parse.ts";
export { parse } from "https://deno.land/std@0.205.0/jsonc/parse.ts";
14 changes: 7 additions & 7 deletions lib/std/path.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export { isAbsolute } from "https://deno.land/std@0.204.0/path/is_absolute.ts";
export { relative } from "https://deno.land/std@0.204.0/path/relative.ts";
export { resolve } from "https://deno.land/std@0.204.0/path/resolve.ts";
export { toFileUrl } from "https://deno.land/std@0.204.0/path/to_file_url.ts";
export { extname } from "https://deno.land/std@0.204.0/path/extname.ts";
export { join } from "https://deno.land/std@0.204.0/path/join.ts";
export { dirname } from "https://deno.land/std@0.204.0/path/dirname.ts";
export { isAbsolute } from "https://deno.land/std@0.205.0/path/is_absolute.ts";
export { relative } from "https://deno.land/std@0.205.0/path/relative.ts";
export { resolve } from "https://deno.land/std@0.205.0/path/resolve.ts";
export { toFileUrl } from "https://deno.land/std@0.205.0/path/to_file_url.ts";
export { extname } from "https://deno.land/std@0.205.0/path/extname.ts";
export { join } from "https://deno.land/std@0.205.0/path/join.ts";
export { dirname } from "https://deno.land/std@0.205.0/path/dirname.ts";
2 changes: 1 addition & 1 deletion lib/std/streams.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {
TextLineStream,
toJson,
} from "https://deno.land/std@0.204.0/streams/mod.ts";
} from "https://deno.land/std@0.205.0/streams/mod.ts";
6 changes: 3 additions & 3 deletions lib/std/testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export {
beforeEach,
describe,
it,
} from "https://deno.land/std@0.204.0/testing/bdd.ts";
export { assertSnapshot } from "https://deno.land/std@0.204.0/testing/snapshot.ts";
} from "https://deno.land/std@0.205.0/testing/bdd.ts";
export { assertSnapshot } from "https://deno.land/std@0.205.0/testing/snapshot.ts";
export {
assertSpyCall,
assertSpyCallArg,
Expand All @@ -18,4 +18,4 @@ export {
type SpyCall,
type Stub,
stub,
} from "https://pax.deno.dev/hasundue/deno_std@feat-constructor-spy/testing/mock.ts";
} from "https://pax.deno.dev/hasundue/deno_std@feat-constructor-spy/testing/mock.ts";

0 comments on commit b578442

Please sign in to comment.