@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vlandoss/run-run",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "The CLI toolbox to fullstack common scripts in Variable Land",
5
5
  "homepage": "https://github.com/variableland/dx/tree/main/packages/run-run#readme",
6
6
  "bugs": {
@@ -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 multi-line
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