Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/create-typink/src/createProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export async function createProject(options: Options) {
const tasks = new Listr(
[
{
title: `📁 Create project directory ${targetDirectory}`,
title: `📁 Creating project directory ${targetDirectory}`,
task: () => createProjectDirectory(projectName!),
},
{
title: `🚀 Creating a new Typink app in ${chalk.green.bold(projectName)}`,
title: `🚀 Initialize a new Typink project in ${chalk.green.bold(projectName)}`,
task: () => copyTemplateFiles(options, templateDirectory, targetDirectory),
},
{
Expand All @@ -40,7 +40,7 @@ export async function createProject(options: Options) {
task: () => prettierFormat(targetDirectory, options),
},
{
title: `🚨 Create the very first Git commit`,
title: `🚨 Creating the very first Git commit`,
task: () => createFirstCommit(targetDirectory),
skip: noGit,
},
Expand Down
2 changes: 1 addition & 1 deletion packages/create-typink/src/utils/render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function renderHelpMessage() {
console.log(` ${chalk.bold.blue('Options:')}
${chalk.gray('-n, --name')} Project name
${chalk.gray('-t, --template')} Template <base>
${chalk.gray('-p, --preset')} Preset contract <base|psp22|greeter|none>
${chalk.gray('-p, --preset')} Example preset contract <base|psp22|greeter|none>
${chalk.gray('-w, --wallet')} Wallet connector <Default|Subconnect|Talisman Connect>
${chalk.gray('-N, --network')} Network <Pop Testnet|Aleph Zero Testnet|Aleph Zero Mainnet|Astar|Shiden|Shibuya>
${chalk.gray('--skip, --skip-install')} Skip packages installation
Expand Down