@vlandoss/run-run 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ import { BiomeService } from "~/services/biome";
|
|
|
3
3
|
import type { Context } from "~/services/ctx";
|
|
4
4
|
|
|
5
5
|
function createToolCommand(toolBin: string) {
|
|
6
|
-
// biome-ignore format: I prefer
|
|
6
|
+
// biome-ignore format: I prefer multiline here
|
|
7
7
|
return createCommand(toolBin)
|
|
8
8
|
.helpCommand(false)
|
|
9
9
|
.helpOption(false)
|
package/src/program/ui.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { colors } from "@vlandoss/clibuddy";
|
|
2
2
|
|
|
3
|
-
const UI_LOGO = `🦊 ${colors.blueBright("R")} ${colors.redBright("U")} ${colors.greenBright("N")} - ${colors.blueBright("R")} ${colors.redBright("U")} ${colors.greenBright("N")}`;
|
|
3
|
+
export const UI_LOGO = `🦊 ${colors.blueBright("R")} ${colors.redBright("U")} ${colors.greenBright("N")} - ${colors.blueBright("R")} ${colors.redBright("U")} ${colors.greenBright("N")}`;
|
|
4
4
|
|
|
5
5
|
const COMPANY_LOGO = `${colors.redBright("Variable Land")} 👊`;
|
|
6
6
|
|