@dbx-tools/core 0.1.18 → 0.1.20

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @dbx-tools/node-core
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/node-core";
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/node-core";
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,14 +11,14 @@
11
11
  "typescript": "^5.9.3"
12
12
  },
13
13
  "dependencies": {
14
- "@dbx-tools/shared-core": "0.1.18"
14
+ "@dbx-tools/shared-core": "0.1.20"
15
15
  },
16
16
  "main": "index.ts",
17
17
  "license": "UNLICENSED",
18
18
  "publishConfig": {
19
19
  "access": "public"
20
20
  },
21
- "version": "0.1.18",
21
+ "version": "0.1.20",
22
22
  "types": "index.ts",
23
23
  "type": "module",
24
24
  "exports": {