mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
d43b43ca78
Instead of using core/snapshot_creator.rs, instead two crates are introduced which allow building the snapshot during build.rs. Rollup is removed and replaced with our own bundler. This removes the Node build dependency. Modules in //js now use Deno-style imports with file extensions, rather than Node style extensionless imports. This improves incremental build time when changes are made to //js files by about 40 seconds.
40 lines
880 B
TypeScript
40 lines
880 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// TODO(kitsonk) Replace with `deno_std/colors/mod.ts` when we can load modules
|
|
// which end in `.ts`.
|
|
|
|
import { noColor } from "./deno.ts";
|
|
|
|
interface Code {
|
|
open: string;
|
|
close: string;
|
|
regexp: RegExp;
|
|
}
|
|
|
|
let enabled = !noColor;
|
|
|
|
function code(open: number, close: number): Code {
|
|
return {
|
|
open: `\x1b[${open}m`,
|
|
close: `\x1b[${close}m`,
|
|
regexp: new RegExp(`\\x1b\\[${close}m`, "g")
|
|
};
|
|
}
|
|
|
|
function run(str: string, code: Code): string {
|
|
return enabled
|
|
? `${code.open}${str.replace(code.regexp, code.open)}${code.close}`
|
|
: str;
|
|
}
|
|
|
|
export function bold(str: string): string {
|
|
return run(str, code(1, 22));
|
|
}
|
|
|
|
export function yellow(str: string): string {
|
|
return run(str, code(33, 39));
|
|
}
|
|
|
|
export function cyan(str: string): string {
|
|
return run(str, code(36, 39));
|
|
}
|