@dbx-tools/core 0.1.17 → 0.1.19
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/README.md +3 -3
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @dbx-tools/
|
|
1
|
+
# @dbx-tools/core
|
|
2
2
|
|
|
3
3
|
Node-only core helpers for process execution and project discovery.
|
|
4
4
|
|
|
@@ -19,7 +19,7 @@ Key features:
|
|
|
19
19
|
## Run Commands
|
|
20
20
|
|
|
21
21
|
```ts
|
|
22
|
-
import { exec } from "@dbx-tools/
|
|
22
|
+
import { exec } from "@dbx-tools/core";
|
|
23
23
|
|
|
24
24
|
const result = await exec.spawn("git", ["status", "--short"], {
|
|
25
25
|
stdout: "capture",
|
|
@@ -64,7 +64,7 @@ Prefer explicit argv arrays when possible.
|
|
|
64
64
|
## Discover Project Roots
|
|
65
65
|
|
|
66
66
|
```ts
|
|
67
|
-
import { project } from "@dbx-tools/
|
|
67
|
+
import { project } from "@dbx-tools/core";
|
|
68
68
|
|
|
69
69
|
const root = project.root();
|
|
70
70
|
const name = project.name();
|
package/package.json
CHANGED
|
@@ -11,11 +11,14 @@
|
|
|
11
11
|
"typescript": "^5.9.3"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@dbx-tools/shared-core": "0.1.
|
|
14
|
+
"@dbx-tools/shared-core": "0.1.19"
|
|
15
15
|
},
|
|
16
16
|
"main": "index.ts",
|
|
17
17
|
"license": "UNLICENSED",
|
|
18
|
-
"
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"version": "0.1.19",
|
|
19
22
|
"types": "index.ts",
|
|
20
23
|
"type": "module",
|
|
21
24
|
"exports": {
|