@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.
|
|
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.
|
|
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/
|
|
35
|
-
"@vlandoss/
|
|
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,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")
|
package/src/services/ctx.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import fs from "node:fs";
|
|
2
|
-
import { type PkgService, type ShellService
|
|
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 = {
|