Skip to content

Commit

Permalink
fix: 猬嗭笍 Updated std dependencies to 0.61.0
Browse files Browse the repository at this point in the history
Still needs f/omelette#43 to be merged for it to work
  • Loading branch information
eliassjogreen committed Jul 13, 2020
1 parent 77bd46c commit 60250e3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.

// provide better logging, see src/log.ts
export * as log from "https://deno.land/std@0.57.0/log/mod.ts";
export { LogRecord } from "https://deno.land/std@0.57.0/log/logger.ts";
export * as log from "https://deno.land/std@0.61.0/log/mod.ts";
export { LogRecord } from "https://deno.land/std@0.61.0/log/logger.ts";
export {
LogLevels,
LevelName as LogLevelName,
} from "https://deno.land/std@0.57.0/log/levels.ts";
export { BaseHandler } from "https://deno.land/std@0.57.0/log/handlers.ts";
} from "https://deno.land/std@0.61.0/log/levels.ts";
export { BaseHandler } from "https://deno.land/std@0.61.0/log/handlers.ts";

// colors for a pretty cli
export {
Expand All @@ -18,21 +18,21 @@ export {
yellow,
red,
gray,
} from "https://deno.land/std@0.57.0/fmt/colors.ts";
} from "https://deno.land/std@0.61.0/fmt/colors.ts";

// configuration reading
export {
exists,
existsSync,
readFileStr,
walk, // ... and one type of file monitoring
} from "https://deno.land/std@0.57.0/fs/mod.ts";
} from "https://deno.land/std@0.61.0/fs/mod.ts";

// configuration parsing (YAML)
export {
JSON_SCHEMA,
parse as parseYaml,
} from "https://deno.land/std@0.57.0/encoding/yaml.ts";
} from "https://deno.land/std@0.61.0/encoding/yaml.ts";

// file watching and directory matching
export {
Expand All @@ -41,17 +41,17 @@ export {
extname,
resolve,
globToRegExp,
} from "https://deno.land/std@0.57.0/path/mod.ts";
} from "https://deno.land/std@0.61.0/path/mod.ts";

// configuration parsing and writing (JSON)
export { readJson } from "https://deno.land/std@0.57.0/fs/read_json.ts";
export { writeJson } from "https://deno.land/std@0.57.0/fs/write_json.ts";
export { readJson } from "https://deno.land/std@0.61.0/fs/read_json.ts";
export { writeJson } from "https://deno.land/std@0.61.0/fs/write_json.ts";

// event control
export { deferred, delay } from "https://deno.land/std@0.57.0/async/mod.ts";
export { deferred, delay } from "https://deno.land/std@0.61.0/async/mod.ts";

// permission management
export { grant } from "https://deno.land/std@0.57.0/permissions/mod.ts";
export { grant } from "https://deno.land/std@0.61.0/permissions/mod.ts";

// autocomplete
export * as omelette from "https://deno.land/x/omelette/omelette.ts";
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
export {
assertEquals,
assert,
} from "https://deno.land/std@0.57.0/testing/asserts.ts";
} from "https://deno.land/std@0.61.0/testing/asserts.ts";

0 comments on commit 60250e3

Please sign in to comment.