swc/bundler/tests/.cache/deno/977e2d1154aa5a452e6996597ae54ff1af663db2.ts
강동윤 fec189f2f3
fix(bundler): Fix stack overflow on Windows (#1464)
bundler:
 - Prevent stack overflow. (denoland/deno#9752)

testing:
 - Bump version
 - Fix handling of paths on windows.

testing_macros:
 - Bump version
 - Correctly ignore files.
2021-03-22 19:42:42 +09:00

43 lines
789 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Loaded from https://deno.land/x/cliffy@v0.18.0/prompt/figures.ts
const main = {
ARROW_UP: "↑",
ARROW_DOWN: "↓",
ARROW_LEFT: "←",
ARROW_RIGHT: "→",
ARROW_UP_LEFT: "↖",
ARROW_UP_RIGHT: "↗",
ARROW_DOWN_RIGHT: "↘",
ARROW_DOWN_LEFT: "↙",
RADIO_ON: "◉",
RADIO_OFF: "◯",
TICK: "✔",
CROSS: "✘",
ELLIPSIS: "…",
POINTER_SMALL: "",
LINE: "─",
POINTER: "",
INFO: "",
TAB_LEFT: "⇤",
TAB_RIGHT: "⇥",
ESCAPE: "⎋",
BACKSPACE: "⌫",
PAGE_UP: "⇞",
PAGE_DOWN: "⇟",
ENTER: "↵",
SEARCH: "⌕",
};
const win = {
...main,
RADIO_ON: "(*)",
RADIO_OFF: "( )",
TICK: "√",
CROSS: "×",
POINTER_SMALL: "»",
};
/** Prompt icons. */
export const Figures = Deno.build.os === "windows" ? win : main;