summary refs log tree commit diff
path: root/util/src
diff options
context:
space:
mode:
authoruurgothat <cckhmck@gmail.com>2021-10-04 22:39:50 +0300
committeruurgothat <cckhmck@gmail.com>2021-10-04 22:39:50 +0300
commitea900af4cd808235818b9f593028d058186d29a5 (patch)
tree438c7924389781cdf10095e142774557fe608721 /util/src
parentAdd warn for git + remove unnecessary import (diff)
downloadserver-ea900af4cd808235818b9f593028d058186d29a5.tar.xz
replace chalk with nanocolors
Diffstat (limited to 'util/src')
-rw-r--r--util/src/util/Database.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/util/Database.ts b/util/src/util/Database.ts
index bf8c6fce..caf0880c 100644
--- a/util/src/util/Database.ts
+++ b/util/src/util/Database.ts
@@ -2,7 +2,7 @@ import path from "path";
 import "reflect-metadata";
 import { Connection, createConnection, ValueTransformer } from "typeorm";
 import * as Models from "../entities";
-import { yellow, green} from "chalk";
+import { yellow, green} from "nanocolors";
 
 // UUID extension option is only supported with postgres
 // We want to generate all id's with Snowflakes that's why we have our own BaseEntity class