From 6c41bfd710e12767130c5a64a5bcaff2b5883ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lenon?= Date: Wed, 20 Apr 2022 21:28:38 -0300 Subject: [PATCH] chore: run start command instead of artisan --- package.json | 2 +- src/Commands/New.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ef24116..64c6d04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@athenna/cli", - "version": "1.0.3", + "version": "1.0.4", "description": "Athenna CLI to create new projects and install components.", "license": "MIT", "author": "Victor Tesoura JĂșnior ", diff --git a/src/Commands/New.ts b/src/Commands/New.ts index d8e244c..8ff6a28 100644 --- a/src/Commands/New.ts +++ b/src/Commands/New.ts @@ -141,7 +141,7 @@ export class New { table.push( [' Run following commands to get started'], [ - ` ${arrow} cd ${projectName}\n ${arrow} npm run test\n ${arrow} npm run artisan\n ${arrow} npm run artisan:dev -- --help`, + ` ${arrow} cd ${projectName}\n ${arrow} npm run test\n ${arrow} npm run start\n ${arrow} npm run start:dev -- --help`, ], )