Skip to content

Commit

Permalink
feat: 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Qu4k committed May 25, 2020
1 parent 7712065 commit c6f9772
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![issues](https://img.shields.io/github/issues/denosaurs/denon)](https://github.com/denosaurs/denon/issues)
[![workflow](https://img.shields.io/github/workflow/status/denosaurs/denon/test)](https://github.com/denosaurs/denon/actions)
[![releases](https://img.shields.io/github/v/release/denosaurs/denon)](https://github.com/denosaurs/denon/releases/latest/)
[![deno version](https://img.shields.io/badge/deno-1.0.1-informational)](https://github.com/denoland/deno)
[![deno version](https://img.shields.io/badge/deno-^1.0.1-informational)](https://github.com/denoland/deno)
[![deno doc](https://img.shields.io/badge/deno-doc-informational)](https://doc.deno.land/https/deno.land/x/denon/mod.ts)
[![license](https://img.shields.io/github/license/denosaurs/denon)](https://github.com/denosaurs/denon/blob/master/LICENSE)
[![Discord](https://img.shields.io/discord/713043818806509608)](https://discord.gg/shHG8vg)
Expand Down
2 changes: 1 addition & 1 deletion denon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { readConfig, DenonConfig } from "./src/config.ts";
import { parseArgs } from "./src/args.ts";
import { setupLog } from "./src/log.ts";

const VERSION = "v2.0.0";
const VERSION = "v2.0.1";

/**
* Events you can listen to when creating a `denon`
Expand Down
31 changes: 18 additions & 13 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,54 +1,59 @@
// 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.52.0/log/mod.ts";
export { LogRecord } from "https://deno.land/std@0.52.0/log/logger.ts";
export { LevelName as LogLevelName } from "https://deno.land/std@0.52.0/log/levels.ts";
export * as log from "https://deno.land/std@0.53.0/log/mod.ts";
export { LogRecord } from "https://deno.land/std@0.53.0/log/logger.ts";
export {
LogLevels,
LevelName as LogLevelName,
} from "https://deno.land/std@0.53.0/log/levels.ts";
export { BaseHandler } from "https://deno.land/std@0.53.0/log/handlers.ts";

// colors for a pretty cli
export {
setColorEnabled,
reset,
bold,
blue,
yellow,
red,
gray,
bold,
} from "https://deno.land/std@0.52.0/fmt/mod.ts";
} from "https://deno.land/std@0.53.0/fmt/colors.ts";

// parsing of execution flags
export { parse as parseFlags } from "https://deno.land/std@0.52.0/flags/mod.ts";
export { parse as parseFlags } from "https://deno.land/std@0.53.0/flags/mod.ts";

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

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

// file watching and directory matching
export {
relative,
dirname,
extname,
globToRegExp,
} from "https://deno.land/std@0.52.0/path/mod.ts";
} from "https://deno.land/std@0.53.0/path/mod.ts";

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

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

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

// autocomplete
export * as omelette from "https://deno.land/x/omelette/omelette.ts";

0 comments on commit c6f9772

Please sign in to comment.