From e480d66eef3c1c4de5c88c29fbba52a5bcec57b3 Mon Sep 17 00:00:00 2001 From: Scott Motte Date: Sun, 12 Jan 2025 20:37:37 -0800 Subject: [PATCH 1/2] =?UTF-8?q?add=20`dotenv`=20=F0=9F=9F=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ src/types/categories.ts | 3 ++- static/library/dotenv.svg | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 static/library/dotenv.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 391556c..e9be22d 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3193,5 +3193,11 @@ export const svgs: iSVG[] = [ dark: '/library/typegpu-wordmark-dark.svg' }, url: 'https://typegpu.com' + }, + { + title: 'dotenv', + category: ['Devtool', 'Config', 'Library'], + route: '/library/dotenv.svg', + url: 'https://github.com/motdotla/dotenv' } ]; diff --git a/src/types/categories.ts b/src/types/categories.ts index 51ceba1..257cc57 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -28,4 +28,5 @@ export type tCategory = | 'void(0)' | 'Authentication' | 'IoT' - | 'Home Automation'; + | 'Home Automation' + | 'Config'; diff --git a/static/library/dotenv.svg b/static/library/dotenv.svg new file mode 100644 index 0000000..72b2dab --- /dev/null +++ b/static/library/dotenv.svg @@ -0,0 +1 @@ +.ENV From 1c25d4411eea8a186d3774e1163f15601ec6caf4 Mon Sep 17 00:00:00 2001 From: Scott Motte Date: Sun, 12 Jan 2025 20:56:52 -0800 Subject: [PATCH 2/2] put config first --- src/data/svgs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index e9be22d..a19ec67 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3196,7 +3196,7 @@ export const svgs: iSVG[] = [ }, { title: 'dotenv', - category: ['Devtool', 'Config', 'Library'], + category: ['Config', 'Library', 'Devtool'], route: '/library/dotenv.svg', url: 'https://github.com/motdotla/dotenv' }