Skip to main content
Module

x/denon/deps.ts

πŸ‘€ Monitor any changes in your Deno application and automatically restart.
Very Popular
Go to Latest
File
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
// provide better logging, see src/log.tsexport * as log from "https://deno.land/std@0.63.0/log/mod.ts";export { LogRecord } from "https://deno.land/std@0.63.0/log/logger.ts";export { LogLevels, LevelName as LogLevelName,} from "https://deno.land/std@0.63.0/log/levels.ts";export { BaseHandler } from "https://deno.land/std@0.63.0/log/handlers.ts";
// colors for a pretty cliexport { setColorEnabled, reset, bold, blue, green, yellow, italic, red, gray,} from "https://deno.land/std@0.63.0/fmt/colors.ts";
// configuration readingexport { exists, existsSync, walk, // ... and one type of file monitoring} from "https://deno.land/std@0.63.0/fs/mod.ts";
// configuration parsing (YAML)export { JSON_SCHEMA, parse as parseYaml,} from "https://deno.land/std@0.63.0/encoding/yaml.ts";
// file watching and directory matchingexport { relative, dirname, extname, resolve, globToRegExp,} from "https://deno.land/std@0.63.0/path/mod.ts";
// configuration parsing and writing (JSON)export { readJson } from "https://deno.land/std@0.63.0/fs/read_json.ts";export { writeJson } from "https://deno.land/std@0.63.0/fs/write_json.ts";
// event controlexport { deferred, delay } from "https://deno.land/std@0.63.0/async/mod.ts";
// permission managementexport { grant } from "https://deno.land/std@0.63.0/permissions/mod.ts";
// // autocomplete// export * as omelette from "https://raw.githubusercontent.com/eliassjogreen/omelette/patch-1/deno/omelette.ts";
// did you meanexport { default as levenshtein } from "https://deno.land/x/levenshtein@v1.0.1/mod.ts";