From c73bac3b4019c06e557b963fb18952822ae584b7 Mon Sep 17 00:00:00 2001 From: Thom Werring Date: Sat, 23 Mar 2024 20:49:52 +0100 Subject: [PATCH] Chore: Renamed module to keep filenames consistent --- package.json | 2 +- src/main.ts | 2 +- src/utils/{fake-date.ts => fakeDate.ts} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/utils/{fake-date.ts => fakeDate.ts} (100%) diff --git a/package.json b/package.json index 3b25be7..cb40a54 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "license": "UNLICENSED", "scripts": { "build": "nest build", - "format": "prettier --write \\\"src/**/*.ts\\\" \\\"e2e-tests/**/*.ts\\\"", + "format": "prettier --write \"src/**/*.ts\" \"e2e-tests/**/*.ts\"", "start": "nest start", "start:dev": "nest start --watch", "start:debug": "nest start --debug --watch", diff --git a/src/main.ts b/src/main.ts index cfce60b..174582a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,7 +1,7 @@ import { NestFactory } from '@nestjs/core'; import { AppModule } from '@/app.module'; import { openApi } from '@/utils/openApi'; -import { setDate } from '@/utils/fake-date'; +import { setDate } from '@/utils/fakeDate'; setDate('2023-02-14 14:00:00 UTC'); diff --git a/src/utils/fake-date.ts b/src/utils/fakeDate.ts similarity index 100% rename from src/utils/fake-date.ts rename to src/utils/fakeDate.ts