create-better-t-stack 3.0.9 → 3.0.10

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/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { createBtsCli } from "./src-ql9M1DvL.js";
2
+ import { createBtsCli } from "./src-z6x1V1-F.js";
3
3
 
4
4
  //#region src/cli.ts
5
5
  createBtsCli().run();
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env node
2
- import { builder, createBtsCli, docs, init, router, sponsors } from "./src-ql9M1DvL.js";
2
+ import { builder, createBtsCli, docs, init, router, sponsors } from "./src-z6x1V1-F.js";
3
3
 
4
4
  export { builder, createBtsCli, docs, init, router, sponsors };
@@ -2089,8 +2089,10 @@ async function setupFumadocs(config) {
2089
2089
  const fumadocsInitCommand = getPackageExecutionCommand(packageManager, commandWithArgs);
2090
2090
  const s = spinner();
2091
2091
  s.start("Setting up Fumadocs...");
2092
+ const appsDir = path.join(projectDir, "apps");
2093
+ await fs.ensureDir(appsDir);
2092
2094
  await execa(fumadocsInitCommand, {
2093
- cwd: path.join(projectDir, "apps"),
2095
+ cwd: appsDir,
2094
2096
  env: { CI: "true" },
2095
2097
  shell: true
2096
2098
  });
@@ -2207,8 +2209,10 @@ async function setupStarlight(config) {
2207
2209
  "--skip-houston"
2208
2210
  ].join(" ")}`;
2209
2211
  const starlightInitCommand = getPackageExecutionCommand(packageManager, commandWithArgs);
2212
+ const appsDir = path.join(projectDir, "apps");
2213
+ await fs.ensureDir(appsDir);
2210
2214
  await execa(starlightInitCommand, {
2211
- cwd: path.join(projectDir, "apps"),
2215
+ cwd: appsDir,
2212
2216
  env: { CI: "true" },
2213
2217
  shell: true
2214
2218
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "3.0.9",
3
+ "version": "3.0.10",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "type": "module",
6
6
  "license": "MIT",