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