@vlandoss/run-run 0.0.2-git-ebd4ccf.0 → 0.0.3

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.2-git-ebd4ccf.0",
3
+ "version": "0.0.3",
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": {
@@ -25,14 +25,14 @@
25
25
  "tsconfig.json"
26
26
  ],
27
27
  "dependencies": {
28
- "@biomejs/biome": "1.9.4",
28
+ "@biomejs/biome": "2.1.4",
29
29
  "commander": "13.1.0",
30
30
  "glob": "^11.0.2",
31
31
  "is-ci": "4.1.0",
32
32
  "rimraf": "6.0.1",
33
33
  "typescript": "5.8.2",
34
- "@vlandoss/loggy": "0.0.1",
35
- "@vlandoss/clibuddy": "0.0.2-git-ebd4ccf.0"
34
+ "@vlandoss/clibuddy": "0.0.3",
35
+ "@vlandoss/loggy": "0.0.3"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
package/src/main.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { isProcessOutput } from "@vlandoss/clibuddy";
2
- import { type Options, createProgram } from "./program";
2
+ import { createProgram, type Options } from "./program";
3
3
  import { logger } from "./services/logger";
4
4
 
5
5
  export async function main(options: Options) {
@@ -1,6 +1,5 @@
1
1
  import { createCommand } from "commander";
2
2
  import type { Context } from "~/services/ctx";
3
- import { logger } from "~/services/logger";
4
3
 
5
4
  export function createFormatCommand(ctx: Context) {
6
5
  return createCommand("format")
@@ -1,6 +1,5 @@
1
1
  import { createCommand } from "commander";
2
2
  import type { Context } from "~/services/ctx";
3
- import { logger } from "~/services/logger";
4
3
 
5
4
  export function createLintCommand(ctx: Context) {
6
5
  return createCommand("lint")
@@ -1,8 +1,6 @@
1
- import { isProcessOutput } from "@vlandoss/clibuddy";
2
1
  import { createCommand } from "commander";
3
2
  import isCI from "is-ci";
4
3
  import type { Context } from "~/services/ctx";
5
- import { logger } from "~/services/logger";
6
4
 
7
5
  export function createTestStaticCommand(ctx: Context) {
8
6
  return createCommand("test:static")
@@ -1,4 +1,4 @@
1
- import { type Project, isProcessOutput } from "@vlandoss/clibuddy";
1
+ import type { Project } from "@vlandoss/clibuddy";
2
2
  import { createCommand } from "commander";
3
3
  import type { Context } from "~/services/ctx";
4
4
  import { logger } from "~/services/logger";
@@ -1,5 +1,5 @@
1
1
  import fs from "node:fs";
2
- import { type PkgService, type ShellService, createPkgService, createShellService, cwd } from "@vlandoss/clibuddy";
2
+ import { createPkgService, createShellService, cwd, type PkgService, type ShellService } from "@vlandoss/clibuddy";
3
3
  import { logger } from "./logger";
4
4
 
5
5
  export type Context = {