Skip to content

Commit bc5ec34

Browse files
committed
fix: remove product name from default project name
1 parent 89dc440 commit bc5ec34

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cli/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ export default class Cli {
121121
const defaultName =
122122
this.args.template === PRISMA_STARTER_TEMPLATE
123123
? "hello-prisma"
124-
: this.args.template?.replace("/", "_");
124+
: this.args.template?.replace("/", "_").split("_").slice(1).join("_");
125+
125126
this.args.name = await prompts.getProjectName(defaultName);
126127
}
127128

0 commit comments

Comments
 (0)