Skip to content

Commit 452c682

Browse files
authored
Merge pull request #214 from pharindoko/dev
Dev merge
2 parents 71f309e + 08f98d7 commit 452c682

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@types/pino": "5.15.1",
3333
"@types/supertest": "2.0.8",
3434
"@types/swagger-schema-official": "2.0.20",
35-
"@types/swagger-ui-express": "4.1.0",
35+
"@types/swagger-ui-express": "4.1.1",
3636
"copy-webpack-plugin": "5.1.1",
3737
"cz-conventional-changelog": "3.0.2",
3838
"eslint": "6.8.0",
@@ -41,7 +41,7 @@
4141
"express-swagger-generator": "1.1.15",
4242
"gts": "1.1.2",
4343
"jest": "24.9.0",
44-
"lerna": "3.20.1",
44+
"lerna": "3.20.2",
4545
"node-env-webpack-plugin": "1.1.0",
4646
"nodemon": "2.0.2",
4747
"nodemon-webpack-plugin": "4.2.2",

packages/cli/src/commands/create-stack.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class CreateStackCommand extends Command {
5858
await Helpers.generateLogo('json-serverless');
5959
this.log();
6060
const { args, flags } = this.parse(CreateStackCommand);
61-
cli.action.start(`${chalk.whiteBright('Check AWS Identity')}`, `${chalk.whiteBright('initializing')}`, { stdout: true });
61+
cli.action.start(`${chalk.blueBright('Check AWS Identity')}`, `${chalk.blueBright('initializing')}`, { stdout: true });
6262
try {
6363
const identity = await AWSActions.checkValidAWSIdentity();
6464
this.log(`${chalk.green('AWS Account: ' + identity.Account)}`);
@@ -70,16 +70,16 @@ export class CreateStackCommand extends Command {
7070
this.log();
7171

7272

73-
const stackName = await cli.prompt(`${chalk.yellow('What is the name of the api ?')}`);
73+
const stackName = await cli.prompt(`${chalk.magenta('What is the name of the api ?')}`);
7474
this.log();
7575
const region = await this.getRegion();
7676
let filePath = path.normalize(args.file);
7777
const templateFolder = path.normalize(this.config.root + '/template');
7878
const stackFolder = path.normalize(process.cwd() + '/' + stackName);
7979
this.log();
80-
this.log('New stack will be created under folder: ' + `${chalk.whiteBright.bold.underline(stackFolder)}`);
80+
this.log('New stack template folder will be created under path: ' + `${chalk.blueBright.bold.underline(stackFolder)}`);
8181
this.log();
82-
await cli.confirm(`${chalk.yellow('Continue ? y/n')}`);
82+
await cli.confirm(`${chalk.magenta('Continue ? y/n')}`);
8383
this.log();
8484
const tasks = new Listr([
8585
{

packages/cli/src/commands/update-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class UpdateStackCommand extends Command {
4040
await Helpers.generateLogo("json-serverless");
4141
this.log();
4242
const { args, flags } = this.parse(UpdateStackCommand);
43-
cli.action.start(`${chalk.whiteBright('Check AWS Identity')}`, `${chalk.whiteBright('initializing')}`, { stdout: true });
43+
cli.action.start(`${chalk.blueBright('Check AWS Identity')}`, `${chalk.blueBright('initializing')}`, { stdout: true });
4444
try {
4545
const identity = await AWSActions.checkValidAWSIdentity();
4646
this.log(`${chalk.green('AWS Account: ' + identity.Account)}`);

packages/server/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@types/node": "10.14.16",
5454
"@types/supertest": "2.0.8",
5555
"@types/swagger-schema-official": "2.0.18",
56-
"@types/swagger-ui-express": "3.0.1",
56+
"@types/swagger-ui-express": "4.1.1",
5757
"cz-conventional-changelog": "3.0.2",
5858
"eslint": "6.3.0",
5959
"eslint-config-airbnb-base": "14.0.0",

0 commit comments

Comments
 (0)