Skip to content

Commit

Permalink
build(deps): bump deno.land/std from 0.219.1 to 0.220.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 14, 2024
1 parent 23026fd commit 6ecad92
Show file tree
Hide file tree
Showing 9 changed files with 138 additions and 99 deletions.
155 changes: 97 additions & 58 deletions deno.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions lib/std/assert.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export { assertArrayIncludes } from "https://deno.land/std@0.219.1/assert/assert_array_includes.ts";
export { assertEquals } from "https://deno.land/std@0.219.1/assert/assert_equals.ts";
export { assertExists } from "https://deno.land/std@0.219.1/assert/assert_exists.ts";
export { assertNotEquals } from "https://deno.land/std@0.219.1/assert/assert_not_equals.ts";
export { assertObjectMatch } from "https://deno.land/std@0.219.1/assert/assert_object_match.ts";
export { assertThrows } from "https://deno.land/std@0.219.1/assert/assert_throws.ts";
export { AssertionError } from "https://deno.land/std@0.219.1/assert/assertion_error.ts";
export { assertRejects } from "https://deno.land/std@0.219.1/assert/assert_rejects.ts";
export { assertInstanceOf } from "https://deno.land/std@0.219.1/assert/assert_instance_of.ts";
export { assertArrayIncludes } from "https://deno.land/std@0.220.0/assert/assert_array_includes.ts";
export { assertEquals } from "https://deno.land/std@0.220.0/assert/assert_equals.ts";
export { assertExists } from "https://deno.land/std@0.220.0/assert/assert_exists.ts";
export { assertNotEquals } from "https://deno.land/std@0.220.0/assert/assert_not_equals.ts";
export { assertObjectMatch } from "https://deno.land/std@0.220.0/assert/assert_object_match.ts";
export { assertThrows } from "https://deno.land/std@0.220.0/assert/assert_throws.ts";
export { AssertionError } from "https://deno.land/std@0.220.0/assert/assertion_error.ts";
export { assertRejects } from "https://deno.land/std@0.220.0/assert/assert_rejects.ts";
export { assertInstanceOf } from "https://deno.land/std@0.220.0/assert/assert_instance_of.ts";
22 changes: 11 additions & 11 deletions lib/std/collections.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
export { deepMerge } from "https://deno.land/std@0.219.1/collections/deep_merge.ts";
export { distinct } from "https://deno.land/std@0.219.1/collections/distinct.ts";
export { distinctBy } from "https://deno.land/std@0.219.1/collections/distinct_by.ts";
export { filterEntries } from "https://deno.land/std@0.219.1/collections/filter_entries.ts";
export { filterKeys } from "https://deno.land/std@0.219.1/collections/filter_keys.ts";
export { mapValues } from "https://deno.land/std@0.219.1/collections/map_values.ts";
export { mapEntries } from "https://deno.land/std@0.219.1/collections/map_entries.ts";
export { mapNotNullish as mapN } from "https://deno.land/std@0.219.1/collections/map_not_nullish.ts";
export { maxBy } from "https://deno.land/std@0.219.1/collections/max_by.ts";
export { omit } from "https://deno.land/std@0.219.1/collections/omit.ts";
export { partition } from "https://deno.land/std@0.219.1/collections/partition.ts";
export { deepMerge } from "https://deno.land/std@0.220.0/collections/deep_merge.ts";
export { distinct } from "https://deno.land/std@0.220.0/collections/distinct.ts";
export { distinctBy } from "https://deno.land/std@0.220.0/collections/distinct_by.ts";
export { filterEntries } from "https://deno.land/std@0.220.0/collections/filter_entries.ts";
export { filterKeys } from "https://deno.land/std@0.220.0/collections/filter_keys.ts";
export { mapValues } from "https://deno.land/std@0.220.0/collections/map_values.ts";
export { mapEntries } from "https://deno.land/std@0.220.0/collections/map_entries.ts";
export { mapNotNullish as mapN } from "https://deno.land/std@0.220.0/collections/map_not_nullish.ts";
export { maxBy } from "https://deno.land/std@0.220.0/collections/max_by.ts";
export { omit } from "https://deno.land/std@0.220.0/collections/omit.ts";
export { partition } from "https://deno.land/std@0.220.0/collections/partition.ts";
2 changes: 1 addition & 1 deletion lib/std/fmt.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { stripAnsiCode } from "https://deno.land/std@0.219.1/fmt/colors.ts";
export { stripAnsiCode } from "https://deno.land/std@0.220.0/fmt/colors.ts";
4 changes: 2 additions & 2 deletions lib/std/fs.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export { exists, existsSync } from "https://deno.land/std@0.219.1/fs/exists.ts";
export { exists, existsSync } from "https://deno.land/std@0.220.0/fs/exists.ts";
export {
detect as detectEOL,
EOL,
format as formatEOL,
LF,
} from "https://deno.land/std@0.219.1/fs/eol.ts";
} from "https://deno.land/std@0.220.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.219.1/jsonc/parse.ts";
export { parse } from "https://deno.land/std@0.220.0/jsonc/parse.ts";
18 changes: 9 additions & 9 deletions lib/std/path.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export { isAbsolute } from "https://deno.land/std@0.219.1/path/is_absolute.ts";
export { relative } from "https://deno.land/std@0.219.1/path/relative.ts";
export { resolve } from "https://deno.land/std@0.219.1/path/resolve.ts";
export { toFileUrl } from "https://deno.land/std@0.219.1/path/to_file_url.ts";
export { fromFileUrl } from "https://deno.land/std@0.219.1/path/from_file_url.ts";
export { extname } from "https://deno.land/std@0.219.1/path/extname.ts";
export { join } from "https://deno.land/std@0.219.1/path/join.ts";
export { dirname } from "https://deno.land/std@0.219.1/path/dirname.ts";
export { basename } from "https://deno.land/std@0.219.1/path/basename.ts";
export { isAbsolute } from "https://deno.land/std@0.220.0/path/is_absolute.ts";
export { relative } from "https://deno.land/std@0.220.0/path/relative.ts";
export { resolve } from "https://deno.land/std@0.220.0/path/resolve.ts";
export { toFileUrl } from "https://deno.land/std@0.220.0/path/to_file_url.ts";
export { fromFileUrl } from "https://deno.land/std@0.220.0/path/from_file_url.ts";
export { extname } from "https://deno.land/std@0.220.0/path/extname.ts";
export { join } from "https://deno.land/std@0.220.0/path/join.ts";
export { dirname } from "https://deno.land/std@0.220.0/path/dirname.ts";
export { basename } from "https://deno.land/std@0.220.0/path/basename.ts";
10 changes: 5 additions & 5 deletions lib/std/semver.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { compare } from "https://deno.land/std@0.219.1/semver/compare.ts";
export { format } from "https://deno.land/std@0.219.1/semver/format.ts";
export { parse } from "https://deno.land/std@0.219.1/semver/parse.ts";
export { tryParse } from "https://deno.land/std@0.219.1/semver/try_parse.ts";
export { tryParseRange } from "https://deno.land/std@0.219.1/semver/try_parse_range.ts";
export { compare } from "https://deno.land/std@0.220.0/semver/compare.ts";
export { format } from "https://deno.land/std@0.220.0/semver/format.ts";
export { parse } from "https://deno.land/std@0.220.0/semver/parse.ts";
export { tryParse } from "https://deno.land/std@0.220.0/semver/try_parse.ts";
export { tryParseRange } from "https://deno.land/std@0.220.0/semver/try_parse_range.ts";
6 changes: 3 additions & 3 deletions lib/std/testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export {
beforeEach,
describe,
it,
} from "https://deno.land/std@0.219.1/testing/bdd.ts";
} from "https://deno.land/std@0.220.0/testing/bdd.ts";
export {
assertSpyCall,
assertSpyCallArg,
Expand All @@ -17,7 +17,7 @@ export {
type SpyCall,
type Stub,
stub,
} from "https://deno.land/std@0.219.1/testing/mock.ts";
} from "https://deno.land/std@0.220.0/testing/mock.ts";
export {
createAssertSnapshot,
} from "https://deno.land/std@0.219.1/testing/snapshot.ts";
} from "https://deno.land/std@0.220.0/testing/snapshot.ts";

0 comments on commit 6ecad92

Please sign in to comment.