@dbx-tools/cli 0.3.14 → 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
@@ -17,15 +17,15 @@
17
17
  "@clack/prompts": "^1.7.0",
18
18
  "commander": "^15.0.0",
19
19
  "pnpm": "^11.0.6",
20
- "@dbx-tools/core": "0.3.14",
21
- "@dbx-tools/shared-core": "0.3.14"
20
+ "@dbx-tools/core": "0.3.15",
21
+ "@dbx-tools/shared-core": "0.3.15"
22
22
  },
23
23
  "main": "index.ts",
24
24
  "license": "UNLICENSED",
25
25
  "publishConfig": {
26
26
  "access": "public"
27
27
  },
28
- "version": "0.3.14",
28
+ "version": "0.3.15",
29
29
  "types": "index.ts",
30
30
  "type": "module",
31
31
  "exports": {
package/src/bootstrap.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  /**
2
2
  * Bootstrap a brand-new folder into a working dbx-tools workspace before projen runs.
3
+ *
4
+ * @module
3
5
  */
4
6
  import { existsSync, readFileSync, writeFileSync } from "node:fs";
5
7
  import { join } from "node:path";
package/src/cli.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  /**
2
2
  * `dbxtools` commander entry: detect root, bootstrap or install, forward to projen.
3
+ *
4
+ * @module
3
5
  */
4
6
  import { Command } from "commander";
5
7
  import { bootstrapWorkspace, runInitialSynth, seedToolchain } from "./bootstrap";
package/src/pnpm.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  /**
2
2
  * pnpm discovery, workspace install, and projen forwarding for the `dbxtools` CLI.
3
+ *
4
+ * @module
3
5
  */
4
6
  import { createRequire } from "node:module";
5
7
  import { dirname, join } from "node:path";
package/src/root.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  /**
2
2
  * Workspace root detection for the `dbxtools` CLI.
3
+ *
4
+ * @module
3
5
  */
4
6
  import { existsSync } from "node:fs";
5
7
  import { basename, dirname, join, resolve } from "node:path";