Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions update/src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { parseArgs } from "@std/cli/parse-args";
import * as path from "@std/path";
import { ensureMinDenoVersion, error } from "./utils.ts";
import { updateProject } from "./update.ts";
import * as colors from "@std/fmt/colors";

const MIN_DENO_VERSION = "1.43.1";

Expand All @@ -23,17 +22,13 @@ ensureMinDenoVersion(MIN_DENO_VERSION);
const flags = parseArgs(Deno.args, {});

// deno-lint-ignore no-console
console.log(colors.bgRgb8(
colors.rgb8(" 🍋 Fresh Updater ", 0),
121,
));
console.log("%c 🍋 Fresh Updater ", "background-color: #87ffaf; color: black;");
// deno-lint-ignore no-console
console.log();
// deno-lint-ignore no-console
console.log(
colors.italic(
"Note: Breaking changes may require additional manual updates.",
),
"%cNote: Breaking changes may require additional manual updates.",
"font-style: italic;",
);
// deno-lint-ignore no-console
console.log();
Expand Down
Loading