Skip to content

Commit

Permalink
Merge pull request #12 from AthennaIO/develop
Browse files Browse the repository at this point in the history
fix(project): logs of new command
  • Loading branch information
jlenon7 authored Jul 9, 2022
2 parents 0397970 + 60dc6e1 commit 50be7fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
Expand Down
8 changes: 4 additions & 4 deletions src/Commands/New.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
],
)

Expand Down Expand Up @@ -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`,
],
)

Expand Down Expand Up @@ -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(
Expand All @@ -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`,
],
)

Expand Down

0 comments on commit 50be7fd

Please sign in to comment.