Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
Suggest package name
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoDog896 committed Feb 19, 2022
1 parent a337e2f commit 33c8242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const directoryName = dirname(new URL('', import.meta.url).pathname).match(/\w+(

const projectName = prompt(`Enter project name (${directoryName}):`) || directoryName
const preferredMainClass = prompt(`Enter preferred class name (${projectName}):`) || projectName
const packageName = prompt(`Enter package name (ex example):`)
const packageName = prompt(`Enter package name (${projectName.toLowerCase()}):`) || projectName.toLowerCase()
const description = prompt(`Enter description:`)

const paths = {
Expand Down

0 comments on commit 33c8242

Please sign in to comment.