diff options
author | The Arcane Brony <myrainbowdash949@gmail.com> | 2021-12-25 11:09:48 +0000 |
---|---|---|
committer | The Arcane Brony <myrainbowdash949@gmail.com> | 2021-12-25 12:09:48 +0100 |
commit | 9909e5a174cdbb79224b64ccbee8111ad1ee440e (patch) | |
tree | 79312cc6427cce6510076113de0b686a5351f7f7 /api | |
parent | Add Sentry, fix compile errors (diff) | |
download | server-9909e5a174cdbb79224b64ccbee8111ad1ee440e.tar.xz |
Replace nanocolors with picocolors
Diffstat (limited to 'api')
-rw-r--r-- | api/package.json | 2 | ||||
-rw-r--r-- | api/src/Server.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/api/package.json b/api/package.json index ab41b675..303d5871 100644 --- a/api/package.json +++ b/api/package.json @@ -86,9 +86,9 @@ "missing-native-js-functions": "^1.2.18", "morgan": "^1.10.0", "multer": "^1.4.2", - "nanocolors": "^0.2.13", "node-fetch": "^2.6.1", "patch-package": "^6.4.7", + "picocolors": "^1.0.0", "proxy-agent": "^5.0.0", "supertest": "^6.1.6", "typeorm": "^0.2.37" diff --git a/api/src/Server.ts b/api/src/Server.ts index 259c2a6b..b0683dfc 100644 --- a/api/src/Server.ts +++ b/api/src/Server.ts @@ -12,7 +12,7 @@ import { initTranslation } from "./middlewares/Translation"; import morgan from "morgan"; import { initInstance } from "./util/Instance"; import { registerRoutes } from "@fosscord/util"; -import { red } from "nanocolors" +import { red } from "picocolors" export interface FosscordServerOptions extends ServerOptions {} |