diff --git a/package.json b/package.json index 5f1a13d..7f7fb81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@athenna/cli", - "version": "1.0.9", + "version": "1.1.0", "description": "Athenna CLI to create new projects and install components.", "license": "MIT", "author": "João Lenon ", diff --git a/src/Commands/New.js b/src/Commands/New.js index 5643c67..052f8c8 100644 --- a/src/Commands/New.js +++ b/src/Commands/New.js @@ -130,7 +130,7 @@ export class New { table.push( [' Run following commands to get started'], [ - ` ${arrow} cd ${projectName}\n ${arrow} npm run test\n ${arrow} npm run start\n ${arrow} npm run start:dev`, + ` ${arrow} cd ${projectName}\n ${arrow} npm test\n ${arrow} npm start\n ${arrow} npm run start:dev`, ], ) @@ -193,7 +193,7 @@ export class New { table.push( [' Run following commands to get started'], [ - ` ${arrow} cd ${projectName}\n ${arrow} npm run test\n ${arrow} npm run start\n -- --help`, + ` ${arrow} cd ${projectName}\n ${arrow} npm test\n ${arrow} npm start -- --help\n`, ], ) @@ -230,7 +230,7 @@ export class New { await CliHelper.runCommand( cloneCommand, - `Cloning scaffold project from ${this.#repositoryUrl} in branch cli`, + `Cloning scaffold project from ${this.#repositoryUrl} in branch slim`, ) await CliHelper.runCommand( @@ -256,7 +256,7 @@ export class New { table.push( [' Run following commands to get started'], [ - ` ${arrow} cd ${projectName}\n ${arrow} npm run start\n -- --help`, + ` ${arrow} cd ${projectName}\n ${arrow} npm start -- --help\n`, ], )