From ec93566154bb5ebb3a424d4b61ddfc71ad71a6c8 Mon Sep 17 00:00:00 2001 From: Maciej Skierkowski Date: Thu, 21 Nov 2019 12:09:14 -0800 Subject: [PATCH] Run prettify --- docs/dashboard/cicd/best-practices.md | 2 -- .../aws/package/compile/functions/index.test.js | 10 ++-------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/docs/dashboard/cicd/best-practices.md b/docs/dashboard/cicd/best-practices.md index 884af241d..10a0487e9 100644 --- a/docs/dashboard/cicd/best-practices.md +++ b/docs/dashboard/cicd/best-practices.md @@ -12,12 +12,10 @@ layout: Doc # Serverless CI/CD Best Practices - Serverless Framework Pro provides a lot of capabilities out of the box to help you manage and deploy your services. As your teams grow and the number of services grow, it can be difficult to know the best way to organize your services for scale. - To help you manage and deploy your services at scale, check out the [Serverless CI/CD Workflow Guide](https://serverless.com/learn/guides/cicd/) for our recommendations on organizing your apps, servies, repos and automating your release process. diff --git a/lib/plugins/aws/package/compile/functions/index.test.js b/lib/plugins/aws/package/compile/functions/index.test.js index ce4e6f8ff..5ac4fc62f 100644 --- a/lib/plugins/aws/package/compile/functions/index.test.js +++ b/lib/plugins/aws/package/compile/functions/index.test.js @@ -646,10 +646,7 @@ describe('AwsCompileFunctions', () => { Role: { 'Fn::GetAtt': ['IamRoleLambdaExecution', 'Arn'] }, Runtime: 'nodejs12.x', Timeout: 6, - Tags: [ - { Key: 'foo', Value: 'bar' }, - { Key: 'baz', Value: 'qux' }, - ], + Tags: [{ Key: 'foo', Value: 'bar' }, { Key: 'baz', Value: 'qux' }], }, }; @@ -691,10 +688,7 @@ describe('AwsCompileFunctions', () => { Role: { 'Fn::GetAtt': ['IamRoleLambdaExecution', 'Arn'] }, Runtime: 'nodejs12.x', Timeout: 6, - Tags: [ - { Key: 'foo', Value: 'bar' }, - { Key: 'baz', Value: 'qux' }, - ], + Tags: [{ Key: 'foo', Value: 'bar' }, { Key: 'baz', Value: 'qux' }], }, };