File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/cli/src/commands Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export class CreateStackCommand extends Command {
58
58
await Helpers . generateLogo ( 'json-serverless' ) ;
59
59
this . log ( ) ;
60
60
const { args, flags } = this . parse ( CreateStackCommand ) ;
61
- cli . action . start ( `${ chalk . blueBright ( 'Check AWS Identity' ) } ` , `${ chalk . blueBright ( 'initializing' ) } ` , { stdout : true } ) ;
61
+ cli . action . start ( `${ chalk . whiteBright ( 'Check AWS Identity' ) } ` , `${ chalk . whiteBright ( 'initializing' ) } ` , { stdout : true } ) ;
62
62
try {
63
63
const identity = await AWSActions . checkValidAWSIdentity ( ) ;
64
64
this . log ( `${ chalk . green ( 'AWS Account: ' + identity . Account ) } ` ) ;
@@ -70,16 +70,16 @@ export class CreateStackCommand extends Command {
70
70
this . log ( ) ;
71
71
72
72
73
- const stackName = await cli . prompt ( `${ chalk . magenta ( 'What is the name of the api ?' ) } ` ) ;
73
+ const stackName = await cli . prompt ( `${ chalk . yellow ( 'What is the name of the api ?' ) } ` ) ;
74
74
this . log ( ) ;
75
75
const region = await this . getRegion ( ) ;
76
76
let filePath = path . normalize ( args . file ) ;
77
77
const templateFolder = path . normalize ( this . config . root + '/template' ) ;
78
78
const stackFolder = path . normalize ( process . cwd ( ) + '/' + stackName ) ;
79
79
this . log ( ) ;
80
- this . log ( 'New stack template folder will be created under path : ' + `${ chalk . blueBright . bold . underline ( stackFolder ) } ` ) ;
80
+ this . log ( 'New stack will be created under folder : ' + `${ chalk . whiteBright . bold . underline ( stackFolder ) } ` ) ;
81
81
this . log ( ) ;
82
- await cli . confirm ( `${ chalk . magenta ( 'Continue ? y/n' ) } ` ) ;
82
+ await cli . confirm ( `${ chalk . yellow ( 'Continue ? y/n' ) } ` ) ;
83
83
this . log ( ) ;
84
84
const tasks = new Listr ( [
85
85
{
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export class UpdateStackCommand extends Command {
40
40
await Helpers . generateLogo ( "json-serverless" ) ;
41
41
this . log ( ) ;
42
42
const { args, flags } = this . parse ( UpdateStackCommand ) ;
43
- cli . action . start ( `${ chalk . blueBright ( 'Check AWS Identity' ) } ` , `${ chalk . blueBright ( 'initializing' ) } ` , { stdout : true } ) ;
43
+ cli . action . start ( `${ chalk . whiteBright ( 'Check AWS Identity' ) } ` , `${ chalk . whiteBright ( 'initializing' ) } ` , { stdout : true } ) ;
44
44
try {
45
45
const identity = await AWSActions . checkValidAWSIdentity ( ) ;
46
46
this . log ( `${ chalk . green ( 'AWS Account: ' + identity . Account ) } ` ) ;
You can’t perform that action at this time.
0 commit comments