@dbx-tools/core 0.3.13 → 0.3.15

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
@@ -12,14 +12,14 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "yaml": "^2.9.0",
15
- "@dbx-tools/shared-core": "0.3.13"
15
+ "@dbx-tools/shared-core": "0.3.15"
16
16
  },
17
17
  "main": "index.ts",
18
18
  "license": "UNLICENSED",
19
19
  "publishConfig": {
20
20
  "access": "public"
21
21
  },
22
- "version": "0.3.13",
22
+ "version": "0.3.15",
23
23
  "types": "index.ts",
24
24
  "type": "module",
25
25
  "exports": {
package/src/exec.ts CHANGED
@@ -36,6 +36,8 @@
36
36
  * stdin: "ignore",
37
37
  * });
38
38
  * ```
39
+ *
40
+ * @module
39
41
  */
40
42
  import { type ChildProcess, type SpawnOptions, spawn as nodeSpawn, spawnSync as nodeSpawnSync } from "node:child_process";
41
43
  import * as readline from "node:readline";
package/src/file.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  /**
2
2
  * Filesystem utilities: best-effort `fs.stat` helpers that never throw.
3
+ *
4
+ * @module
3
5
  */
4
6
  import { Stats, statSync as nodeStatSync } from "node:fs";
5
7