Skip to content

Commit

Permalink
chore: upgrade prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunnerLivio committed Nov 26, 2023
1 parent 89f97ea commit 2d02ea6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
5 changes: 2 additions & 3 deletions lib/health-check/health-check-executor.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ export class HealthCheckExecutor implements BeforeApplicationShutdown {
async execute(
healthIndicators: HealthIndicatorFunction[],
): Promise<HealthCheckResult> {
const { results, errors } = await this.executeHealthIndicators(
healthIndicators,
);
const { results, errors } =
await this.executeHealthIndicators(healthIndicators);

return this.getResult(results, errors);
}
Expand Down
5 changes: 2 additions & 3 deletions lib/health-indicator/http/http.health.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@ describe('Http Response Health Indicator', () => {
],
}).compile();

httpHealthIndicator = await moduleRef.resolve<HttpHealthIndicator>(
HttpHealthIndicator,
);
httpHealthIndicator =
await moduleRef.resolve<HttpHealthIndicator>(HttpHealthIndicator);

httpService = await moduleRef.resolve<HttpService>(
nestJSAxiosMock.HttpService as any,
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"mysql2": "3.6.1",
"nats": "2.16.0",
"portfinder": "1.0.32",
"prettier": "2.8.8",
"prettier": "3.1.0",
"prisma": "4.16.2",
"reflect-metadata": "0.1.13",
"release-it": "15.11.0",
Expand Down

0 comments on commit 2d02ea6

Please sign in to comment.