From 0222d9de37c29befa0909b6227c9afde2dd5aa43 Mon Sep 17 00:00:00 2001 From: pheralb Date: Wed, 2 Oct 2024 10:24:28 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20``void(0)``=20category?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 30 ++++++++++++++++++++++++------ src/types/categories.ts | 3 ++- 2 files changed, 26 insertions(+), 7 deletions(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 13be442..a4a780a 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -285,12 +285,6 @@ export const svgs: iSVG[] = [ route: '/library/bootstrap.svg', url: 'https://getbootstrap.com/' }, - { - title: 'Vite.js', - category: 'Compiler', - route: '/library/vitejs.svg', - url: 'https://vitejs.dev' - }, { title: 'Facebook', category: 'Social', @@ -2933,5 +2927,29 @@ export const svgs: iSVG[] = [ category: ['Hardware', 'Software'], route: '/library/raspberry_pi.svg', url: 'https://www.raspberrypi.com/' + }, + { + title: 'Vite', + category: ['Devtool', 'void(0)'], + route: '/library/vitejs.svg', + url: 'https://vitejs.dev' + }, + { + title: 'Vitest', + category: ['Framework', 'void(0)'], + route: '/library/vitest.svg', + url: 'https://vitest.dev/' + }, + { + title: 'Oxc', + category: ['Devtool', 'void(0)'], + route: '/library/oxc.svg', + url: 'https://oxc.rs/' + }, + { + title: 'Rolldown', + category: ['Compiler', 'void(0)'], + route: '/library/rolldown.svg', + url: 'https://rolldown.rs/' } ]; diff --git a/src/types/categories.ts b/src/types/categories.ts index 7bd215b..08737b7 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -23,4 +23,5 @@ export type tCategory = | 'Music' | 'Vercel' | 'Google' - | 'Payment'; + | 'Payment' + | 'void(0)';