diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2019-08-24 10:38:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-24 10:38:18 -0700 |
| commit | 4d997d4e2239adb0d982245271e43938443e871f (patch) | |
| tree | 72153ebc09bd34a7389e8d3b294fe776fd16606f /examples | |
| parent | e933a8a0e10f46e6128b277eaadd7ae733a92eeb (diff) | |
Move colors to fmt (denoland/deno_std#571)
Original: https://github.com/denoland/deno_std/commit/28e77389ff409814c9da81d767458b36534f095a
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/catj.ts | 2 | ||||
| -rw-r--r-- | examples/colors.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/catj.ts b/examples/catj.ts index 79a129780..cbe06d4b8 100644 --- a/examples/catj.ts +++ b/examples/catj.ts @@ -8,7 +8,7 @@ /* eslint-disable @typescript-eslint/no-use-before-define */ import { parse } from "../flags/mod.ts"; -import * as colors from "../colors/mod.ts"; +import * as colors from "../fmt/colors.ts"; const decoder = new TextDecoder(); diff --git a/examples/colors.ts b/examples/colors.ts index 9468e8768..6f03355c6 100644 --- a/examples/colors.ts +++ b/examples/colors.ts @@ -1,4 +1,4 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { bgBlue, red, bold, italic } from "../colors/mod.ts"; +import { bgBlue, red, bold, italic } from "../fmt/colors.ts"; console.log(bgBlue(italic(red(bold("Hello world!"))))); |
