create-better-t-stack 2.17.0 → 2.17.1

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/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3757,10 +3757,10 @@ const router = t.router({ init: t.procedure.meta({
3757
3757
  }).optional().default({})])).mutation(async ({ input }) => {
3758
3758
  const [projectName, options] = input;
3759
3759
  const combinedInput = {
3760
- projectName: projectName || void 0,
3760
+ projectName,
3761
3761
  ...options
3762
3762
  };
3763
- return await createProjectHandler(combinedInput);
3763
+ await createProjectHandler(combinedInput);
3764
3764
  }) });
3765
3765
  createCli({
3766
3766
  router,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.17.0",
3
+ "version": "2.17.1",
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",