From 453f36c1eb2bd1acd793c6c1eec741cf30127b44 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Sun, 10 Aug 2025 02:19:23 +0700 Subject: [PATCH] Task/remove warnings of database seeding process (#5340) * Remove warnings of database seeding process * Update changelog --- CHANGELOG.md | 1 + package.json | 2 +- prisma/{seed.ts => seed.mts} | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename prisma/{seed.ts => seed.mts} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26878b5ee..9bb4642c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Shortened the date in the activities table on mobile - Introduced the fuzzy search for the accounts endpoint - Refactored the fuzzy search for the holdings of the assistant +- Eliminated the warnings of the database seeding process - Improved the language localization for Polish (`pl`) - Improved the language localization for Spanish (`es`) diff --git a/package.json b/package.json index e98dcfe76..152ddef22 100644 --- a/package.json +++ b/package.json @@ -212,6 +212,6 @@ "node": ">=22.18.0" }, "prisma": { - "seed": "node prisma/seed.ts" + "seed": "node prisma/seed.mts" } } diff --git a/prisma/seed.ts b/prisma/seed.mts similarity index 100% rename from prisma/seed.ts rename to prisma/seed.mts