-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Qu4k
committed
Sep 14, 2020
1 parent
8fe6b80
commit 7c1e3e4
Showing
8 changed files
with
28 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// 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/x/[email protected].0/mod.ts"; | ||
export * as log from "https://deno.land/x/[email protected].1/mod.ts"; | ||
|
||
// colors for a pretty cli | ||
export { | ||
|
@@ -14,20 +14,20 @@ export { | |
italic, | ||
red, | ||
gray, | ||
} from "https://deno.land/std@0.68.0/fmt/colors.ts"; | ||
} from "https://deno.land/std@0.69.0/fmt/colors.ts"; | ||
|
||
// configuration reading | ||
export { | ||
exists, | ||
existsSync, | ||
walk, // ... and one type of file monitoring | ||
} from "https://deno.land/std@0.68.0/fs/mod.ts"; | ||
} from "https://deno.land/std@0.69.0/fs/mod.ts"; | ||
|
||
// configuration parsing (YAML) | ||
export { | ||
JSON_SCHEMA, | ||
parse as parseYaml, | ||
} from "https://deno.land/std@0.68.0/encoding/yaml.ts"; | ||
} from "https://deno.land/std@0.69.0/encoding/yaml.ts"; | ||
|
||
// file watching and directory matching | ||
export { | ||
|
@@ -36,14 +36,10 @@ export { | |
extname, | ||
resolve, | ||
globToRegExp, | ||
} from "https://deno.land/[email protected]/path/mod.ts"; | ||
|
||
// configuration parsing and writing (JSON) | ||
export { readJson } from "https://deno.land/[email protected]/fs/read_json.ts"; | ||
export { writeJson } from "https://deno.land/[email protected]/fs/write_json.ts"; | ||
} from "https://deno.land/[email protected]/path/mod.ts"; | ||
|
||
// event control | ||
export { deferred, delay } from "https://deno.land/std@0.68.0/async/mod.ts"; | ||
export { deferred, delay } from "https://deno.land/std@0.69.0/async/mod.ts"; | ||
|
||
// permission management | ||
export { grant } from "https://deno.land/std@0.68.0/permissions/mod.ts"; | ||
export { grant } from "https://deno.land/std@0.69.0/permissions/mod.ts"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters