From 4cbd5228803be70a818ef37f022f421a0d53d65b Mon Sep 17 00:00:00 2001 From: pheralb Date: Wed, 27 Dec 2023 17:00:41 +0000 Subject: [PATCH 1/4] =?UTF-8?q?=F0=9F=93=9D=20Update=20readme=20docs.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 14bdcb0..e7e90c8 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,7 @@ pnpm install > [!WARNING] > > - Remember to optimize SVG for web, you can use [SVGOMG](https://jakearchibald.github.io/svgomg/). +> - When you optimize the SVG, make sure that the `viewBox` is not removed. > - The size limit for each .svg is **25kb**. 4. Go to the [**`src/data/svgs.ts`**](https://github.com/pheralb/svgl/blob/main/src/data/svgs.ts) and add the information about your logo, following the structure: From c802690de104d05eb0b7ac63972d631c119a632e Mon Sep 17 00:00:00 2001 From: pheralb Date: Wed, 27 Dec 2023 17:11:39 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=94=A7=20Create=20fixViebox=20cli.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fix-viewbox/index.js | 62 ++++++++++++++ fix-viewbox/package.json | 21 +++++ fix-viewbox/pnpm-lock.yaml | 166 +++++++++++++++++++++++++++++++++++++ package.json | 1 + 4 files changed, 250 insertions(+) create mode 100644 fix-viewbox/index.js create mode 100644 fix-viewbox/package.json create mode 100644 fix-viewbox/pnpm-lock.yaml diff --git a/fix-viewbox/index.js b/fix-viewbox/index.js new file mode 100644 index 0000000..b442dea --- /dev/null +++ b/fix-viewbox/index.js @@ -0,0 +1,62 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +const { readdir, stat } = require('fs').promises; +const { readFile, writeFile } = require('fs/promises'); +const { join } = require('path'); + +// 🔎 Settings: +const dir = '../static/library'; + +async function fixViewbox() { + const files = await readdir(dir); + const fileType = 'svg'; + let message = ''; + + for (const file of files) { + const filePath = join(dir, file); + const fileStat = await stat(filePath); + if (fileStat.isFile() && file.endsWith(fileType)) { + const fileContent = await readFile(filePath); + const viewBox = getViewBox(fileContent); + const width = getWidth(fileContent); + const height = getHeight(fileContent); + if (!viewBox) { + const newFileContent = fileContent + .toString() + .replace('=14'} + dev: false + + /@octokit/auth-token@4.0.0: + resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} + engines: {node: '>= 18'} + dev: false + + /@octokit/core@5.0.2: + resolution: {integrity: sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==} + engines: {node: '>= 18'} + dependencies: + '@octokit/auth-token': 4.0.0 + '@octokit/graphql': 7.0.2 + '@octokit/request': 8.1.6 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.4.0 + before-after-hook: 2.2.3 + universal-user-agent: 6.0.1 + dev: false + + /@octokit/endpoint@9.0.4: + resolution: {integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==} + engines: {node: '>= 18'} + dependencies: + '@octokit/types': 12.4.0 + universal-user-agent: 6.0.1 + dev: false + + /@octokit/graphql@7.0.2: + resolution: {integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==} + engines: {node: '>= 18'} + dependencies: + '@octokit/request': 8.1.6 + '@octokit/types': 12.4.0 + universal-user-agent: 6.0.1 + dev: false + + /@octokit/openapi-types@19.1.0: + resolution: {integrity: sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==} + dev: false + + /@octokit/plugin-paginate-rest@9.1.5(@octokit/core@5.0.2): + resolution: {integrity: sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '>=5' + dependencies: + '@octokit/core': 5.0.2 + '@octokit/types': 12.4.0 + dev: false + + /@octokit/plugin-rest-endpoint-methods@10.2.0(@octokit/core@5.0.2): + resolution: {integrity: sha512-ePbgBMYtGoRNXDyKGvr9cyHjQ163PbwD0y1MkDJCpkO2YH4OeXX40c4wYHKikHGZcpGPbcRLuy0unPUuafco8Q==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '>=5' + dependencies: + '@octokit/core': 5.0.2 + '@octokit/types': 12.4.0 + dev: false + + /@octokit/request-error@5.0.1: + resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==} + engines: {node: '>= 18'} + dependencies: + '@octokit/types': 12.4.0 + deprecation: 2.3.1 + once: 1.4.0 + dev: false + + /@octokit/request@8.1.6: + resolution: {integrity: sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==} + engines: {node: '>= 18'} + dependencies: + '@octokit/endpoint': 9.0.4 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.4.0 + universal-user-agent: 6.0.1 + dev: false + + /@octokit/types@12.4.0: + resolution: {integrity: sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==} + dependencies: + '@octokit/openapi-types': 19.1.0 + dev: false + + /before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + dev: false + + /deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + dev: false + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: false + + /tunnel@0.0.6: + resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} + engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} + dev: false + + /undici@5.28.2: + resolution: {integrity: sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==} + engines: {node: '>=14.0'} + dependencies: + '@fastify/busboy': 2.1.0 + dev: false + + /universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + dev: false + + /uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + dev: false + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: false diff --git a/package.json b/package.json index 265a0d9..9527e5c 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "check:size": "cd ./check-size && npm run start", + "fix:viewbox": "cd ./fix-viewbox && npm run start", "test": "vitest run", "lint": "prettier --plugin-search-dir . --check . && eslint .", "format": "prettier --plugin-search-dir . --write ." From 70488e2dd2df23bd0b65f0cc2a87522bd7ca4dee Mon Sep 17 00:00:00 2001 From: pheralb Date: Wed, 27 Dec 2023 17:18:22 +0000 Subject: [PATCH 3/4] =?UTF-8?q?=F0=9F=93=A6=20Add=20``viewBox``=20property?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/library/Beacon-Logo.svg | 2 +- static/library/algorand.svg | 2 +- static/library/arc_browser.svg | 2 +- static/library/astro.svg | 2 +- static/library/astro_dark.svg | 2 +- static/library/atom.svg | 2 +- static/library/axiom-dark.svg | 2 +- static/library/axiom-light.svg | 2 +- static/library/bing.svg | 2 +- static/library/blitzjs.svg | 2 +- static/library/bootstrap.svg | 2 +- static/library/builder.svg | 2 +- static/library/c++.svg | 2 +- static/library/c.svg | 2 +- static/library/cloudflare-workers.svg | 2 +- static/library/cloudflare.svg | 2 +- static/library/cloudinary.svg | 2 +- static/library/cobol.svg | 2 +- static/library/dart.svg | 2 +- static/library/discord.svg | 2 +- static/library/docusaurus.svg | 2 +- static/library/eclipse.svg | 2 +- static/library/esbuild.svg | 2 +- static/library/firebase.svg | 2 +- static/library/firefox.svg | 2 +- static/library/fly.svg | 2 +- static/library/fortran.svg | 2 +- static/library/framer.svg | 2 +- static/library/framer_dark.svg | 2 +- static/library/github.svg | 2 +- static/library/godot_engine.svg | 2 +- static/library/hashnode.svg | 2 +- static/library/hcaptcha.svg | 2 +- static/library/headlessui.svg | 2 +- static/library/homebrew.svg | 2 +- static/library/jetbrains-space.svg | 2 +- static/library/jquery.svg | 2 +- static/library/jquery_dark.svg | 2 +- static/library/jwt.svg | 2 +- static/library/kotlin.svg | 2 +- static/library/lit.svg | 2 +- static/library/loom.svg | 2 +- static/library/matic.svg | 2 +- static/library/medusa.svg | 2 +- static/library/messenger.svg | 2 +- static/library/microsoft.svg | 2 +- static/library/midday.svg | 2 +- static/library/monero.svg | 2 +- static/library/mongodb.svg | 2 +- static/library/neon.svg | 2 +- static/library/netflix.svg | 2 +- static/library/netlify.svg | 2 +- static/library/nextjs.svg | 2 +- static/library/nhost.svg | 2 +- static/library/nodejs.svg | 2 +- static/library/nuxt.svg | 2 +- static/library/payload.svg | 2 +- static/library/payload_dark.svg | 2 +- static/library/pinia.svg | 2 +- static/library/pocket-base.svg | 2 +- static/library/postman.svg | 2 +- static/library/preact.svg | 2 +- static/library/prisma.svg | 2 +- static/library/prisma_dark.svg | 2 +- static/library/producthunt.svg | 2 +- static/library/qwik.svg | 2 +- static/library/rapidapi.svg | 2 +- static/library/react.svg | 2 +- static/library/remix.svg | 2 +- static/library/sass.svg | 2 +- static/library/search-by-algolia.svg | 2 +- static/library/sol.svg | 2 +- static/library/solidjs.svg | 2 +- static/library/spotify.svg | 2 +- static/library/spring.svg | 2 +- static/library/sql-server.svg | 2 +- static/library/sst.svg | 2 +- static/library/stackblitz.svg | 2 +- static/library/stately.svg | 2 +- static/library/stately_dark.svg | 2 +- static/library/stimulus.svg | 2 +- static/library/storyblok.svg | 2 +- static/library/storybook.svg | 2 +- static/library/strapi.svg | 2 +- static/library/sublimetext.svg | 2 +- static/library/supabase.svg | 2 +- static/library/surrealdb.svg | 2 +- static/library/svelte.svg | 2 +- static/library/tailwindcss.svg | 2 +- static/library/telegram.svg | 2 +- static/library/tiktok.svg | 2 +- static/library/turbopack.svg | 2 +- static/library/turborepo.svg | 2 +- static/library/twilio.svg | 2 +- static/library/twitter.svg | 2 +- static/library/typescript.svg | 2 +- static/library/upstash.svg | 2 +- static/library/vercel.svg | 2 +- static/library/vercel_dark.svg | 2 +- static/library/visual-studio.svg | 2 +- static/library/vitejs.svg | 2 +- static/library/vitest.svg | 2 +- static/library/vscode.svg | 2 +- static/library/vue.svg | 2 +- static/library/warp.svg | 2 +- static/library/whatsapp.svg | 2 +- static/library/windicss.svg | 2 +- static/library/windows.svg | 2 +- static/library/xbox.svg | 2 +- static/library/xstate.svg | 2 +- static/library/xstate_dark.svg | 2 +- static/library/youtube.svg | 2 +- static/library/zeabur-dark.svg | 2 +- static/library/zeabur-light.svg | 2 +- static/library/zig.svg | 2 +- 115 files changed, 115 insertions(+), 115 deletions(-) diff --git a/static/library/Beacon-Logo.svg b/static/library/Beacon-Logo.svg index 54ecea5..9020ee4 100644 --- a/static/library/Beacon-Logo.svg +++ b/static/library/Beacon-Logo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/algorand.svg b/static/library/algorand.svg index bb25f13..c784611 100644 --- a/static/library/algorand.svg +++ b/static/library/algorand.svg @@ -1,4 +1,4 @@ - + diff --git a/static/library/arc_browser.svg b/static/library/arc_browser.svg index 1911033..a2f8481 100644 --- a/static/library/arc_browser.svg +++ b/static/library/arc_browser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/astro.svg b/static/library/astro.svg index bddbff9..652ca65 100644 --- a/static/library/astro.svg +++ b/static/library/astro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/astro_dark.svg b/static/library/astro_dark.svg index e776560..d5fa218 100644 --- a/static/library/astro_dark.svg +++ b/static/library/astro_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/atom.svg b/static/library/atom.svg index 74e6c59..966bca2 100644 --- a/static/library/atom.svg +++ b/static/library/atom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/axiom-dark.svg b/static/library/axiom-dark.svg index 8f55a02..ed4b570 100644 --- a/static/library/axiom-dark.svg +++ b/static/library/axiom-dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/axiom-light.svg b/static/library/axiom-light.svg index be2e2c2..324aa52 100644 --- a/static/library/axiom-light.svg +++ b/static/library/axiom-light.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/bing.svg b/static/library/bing.svg index bebf561..dbd24c5 100644 --- a/static/library/bing.svg +++ b/static/library/bing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/blitzjs.svg b/static/library/blitzjs.svg index c41c0bc..17f2ee4 100644 --- a/static/library/blitzjs.svg +++ b/static/library/blitzjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/bootstrap.svg b/static/library/bootstrap.svg index 431747b..ccfabc8 100644 --- a/static/library/bootstrap.svg +++ b/static/library/bootstrap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/builder.svg b/static/library/builder.svg index da42b6b..77ceaa7 100644 --- a/static/library/builder.svg +++ b/static/library/builder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/c++.svg b/static/library/c++.svg index e371402..d39f74e 100644 --- a/static/library/c++.svg +++ b/static/library/c++.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/c.svg b/static/library/c.svg index 76b62a1..8a7ea40 100644 --- a/static/library/c.svg +++ b/static/library/c.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/cloudflare-workers.svg b/static/library/cloudflare-workers.svg index 8e6a856..c31914f 100644 --- a/static/library/cloudflare-workers.svg +++ b/static/library/cloudflare-workers.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/cloudflare.svg b/static/library/cloudflare.svg index 9932221..0d601bf 100644 --- a/static/library/cloudflare.svg +++ b/static/library/cloudflare.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/cloudinary.svg b/static/library/cloudinary.svg index 151eeb1..ef32a0b 100644 --- a/static/library/cloudinary.svg +++ b/static/library/cloudinary.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/cobol.svg b/static/library/cobol.svg index e6e7f82..b6ab0fc 100644 --- a/static/library/cobol.svg +++ b/static/library/cobol.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/dart.svg b/static/library/dart.svg index 5dda022..a8a25fb 100644 --- a/static/library/dart.svg +++ b/static/library/dart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/discord.svg b/static/library/discord.svg index 99339fb..e6c391a 100644 --- a/static/library/discord.svg +++ b/static/library/discord.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/docusaurus.svg b/static/library/docusaurus.svg index f7f324f..8284e05 100644 --- a/static/library/docusaurus.svg +++ b/static/library/docusaurus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/eclipse.svg b/static/library/eclipse.svg index e107dea..e86656c 100644 --- a/static/library/eclipse.svg +++ b/static/library/eclipse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/esbuild.svg b/static/library/esbuild.svg index a51d606..ec46269 100644 --- a/static/library/esbuild.svg +++ b/static/library/esbuild.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/firebase.svg b/static/library/firebase.svg index 00ca848..005e7db 100644 --- a/static/library/firebase.svg +++ b/static/library/firebase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/firefox.svg b/static/library/firefox.svg index 32698e7..b7ae49f 100644 --- a/static/library/firefox.svg +++ b/static/library/firefox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/fly.svg b/static/library/fly.svg index 2f8e567..efd17d3 100644 --- a/static/library/fly.svg +++ b/static/library/fly.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/fortran.svg b/static/library/fortran.svg index 0ad4185..b12b9c0 100644 --- a/static/library/fortran.svg +++ b/static/library/fortran.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/framer.svg b/static/library/framer.svg index bd68c8b..d2bf68c 100644 --- a/static/library/framer.svg +++ b/static/library/framer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/framer_dark.svg b/static/library/framer_dark.svg index fbb9cbe..04feb3d 100644 --- a/static/library/framer_dark.svg +++ b/static/library/framer_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/github.svg b/static/library/github.svg index 5582b14..a087e65 100644 --- a/static/library/github.svg +++ b/static/library/github.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/godot_engine.svg b/static/library/godot_engine.svg index 1da8775..78dbbee 100644 --- a/static/library/godot_engine.svg +++ b/static/library/godot_engine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/hashnode.svg b/static/library/hashnode.svg index af3505e..191c09f 100644 --- a/static/library/hashnode.svg +++ b/static/library/hashnode.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/hcaptcha.svg b/static/library/hcaptcha.svg index 895a51a..29af0f7 100644 --- a/static/library/hcaptcha.svg +++ b/static/library/hcaptcha.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/headlessui.svg b/static/library/headlessui.svg index 050cb37..ab03571 100644 --- a/static/library/headlessui.svg +++ b/static/library/headlessui.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/homebrew.svg b/static/library/homebrew.svg index b15ff14..ff0d599 100644 --- a/static/library/homebrew.svg +++ b/static/library/homebrew.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/jetbrains-space.svg b/static/library/jetbrains-space.svg index 006722b..eeb59af 100644 --- a/static/library/jetbrains-space.svg +++ b/static/library/jetbrains-space.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/jquery.svg b/static/library/jquery.svg index 0f9413b..bb3a4c5 100644 --- a/static/library/jquery.svg +++ b/static/library/jquery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/jquery_dark.svg b/static/library/jquery_dark.svg index da6d74a..ca27645 100644 --- a/static/library/jquery_dark.svg +++ b/static/library/jquery_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/jwt.svg b/static/library/jwt.svg index dd501f2..0873546 100644 --- a/static/library/jwt.svg +++ b/static/library/jwt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/kotlin.svg b/static/library/kotlin.svg index 17146f9..bf35f9b 100644 --- a/static/library/kotlin.svg +++ b/static/library/kotlin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/lit.svg b/static/library/lit.svg index 517fd86..ac723d5 100644 --- a/static/library/lit.svg +++ b/static/library/lit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/loom.svg b/static/library/loom.svg index b17d57c..9072914 100644 --- a/static/library/loom.svg +++ b/static/library/loom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/matic.svg b/static/library/matic.svg index d1a0982..0d1d55f 100644 --- a/static/library/matic.svg +++ b/static/library/matic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/medusa.svg b/static/library/medusa.svg index 42d34c2..fb037a7 100644 --- a/static/library/medusa.svg +++ b/static/library/medusa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/messenger.svg b/static/library/messenger.svg index a31e001..dc8687c 100644 --- a/static/library/messenger.svg +++ b/static/library/messenger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/microsoft.svg b/static/library/microsoft.svg index a689de3..86b5ac6 100644 --- a/static/library/microsoft.svg +++ b/static/library/microsoft.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/midday.svg b/static/library/midday.svg index ef7e4d7..ecad596 100644 --- a/static/library/midday.svg +++ b/static/library/midday.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/monero.svg b/static/library/monero.svg index 47e5699..4e313ed 100644 --- a/static/library/monero.svg +++ b/static/library/monero.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/mongodb.svg b/static/library/mongodb.svg index 9dae894..48b0473 100644 --- a/static/library/mongodb.svg +++ b/static/library/mongodb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/neon.svg b/static/library/neon.svg index e1aa7d1..64f9538 100644 --- a/static/library/neon.svg +++ b/static/library/neon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/netflix.svg b/static/library/netflix.svg index cc36bc2..d0bcee9 100644 --- a/static/library/netflix.svg +++ b/static/library/netflix.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/netlify.svg b/static/library/netlify.svg index acba207..24ea4c4 100644 --- a/static/library/netlify.svg +++ b/static/library/netlify.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/nextjs.svg b/static/library/nextjs.svg index 71e4aa7..f1f3266 100644 --- a/static/library/nextjs.svg +++ b/static/library/nextjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/nhost.svg b/static/library/nhost.svg index 8a4bddc..435bec6 100644 --- a/static/library/nhost.svg +++ b/static/library/nhost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/nodejs.svg b/static/library/nodejs.svg index 0ec0e92..d11bcdc 100644 --- a/static/library/nodejs.svg +++ b/static/library/nodejs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/nuxt.svg b/static/library/nuxt.svg index d2e6709..81b2e6f 100644 --- a/static/library/nuxt.svg +++ b/static/library/nuxt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/payload.svg b/static/library/payload.svg index 5673ed3..31ad2b8 100644 --- a/static/library/payload.svg +++ b/static/library/payload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/payload_dark.svg b/static/library/payload_dark.svg index 82243a6..349c869 100644 --- a/static/library/payload_dark.svg +++ b/static/library/payload_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/pinia.svg b/static/library/pinia.svg index 3889bda..3cc810e 100644 --- a/static/library/pinia.svg +++ b/static/library/pinia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/pocket-base.svg b/static/library/pocket-base.svg index c3d6322..44aed1d 100644 --- a/static/library/pocket-base.svg +++ b/static/library/pocket-base.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/postman.svg b/static/library/postman.svg index 6f6577a..fc84296 100644 --- a/static/library/postman.svg +++ b/static/library/postman.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/preact.svg b/static/library/preact.svg index 924ada0..c23439a 100644 --- a/static/library/preact.svg +++ b/static/library/preact.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/prisma.svg b/static/library/prisma.svg index ebb23bc..3210efa 100644 --- a/static/library/prisma.svg +++ b/static/library/prisma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/prisma_dark.svg b/static/library/prisma_dark.svg index 20e05a2..f1679b9 100644 --- a/static/library/prisma_dark.svg +++ b/static/library/prisma_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/producthunt.svg b/static/library/producthunt.svg index a56fecf..c2858ba 100644 --- a/static/library/producthunt.svg +++ b/static/library/producthunt.svg @@ -1,5 +1,5 @@ - + diff --git a/static/library/qwik.svg b/static/library/qwik.svg index f5a1c19..c38cd3b 100644 --- a/static/library/qwik.svg +++ b/static/library/qwik.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/rapidapi.svg b/static/library/rapidapi.svg index 7f2360d..dab2bc8 100644 --- a/static/library/rapidapi.svg +++ b/static/library/rapidapi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/react.svg b/static/library/react.svg index 869c08e..1842619 100644 --- a/static/library/react.svg +++ b/static/library/react.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/remix.svg b/static/library/remix.svg index 7e05b36..14821ce 100644 --- a/static/library/remix.svg +++ b/static/library/remix.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/sass.svg b/static/library/sass.svg index d430c80..5ad3e1f 100644 --- a/static/library/sass.svg +++ b/static/library/sass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/search-by-algolia.svg b/static/library/search-by-algolia.svg index f1c841e..4c4cbca 100644 --- a/static/library/search-by-algolia.svg +++ b/static/library/search-by-algolia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/sol.svg b/static/library/sol.svg index cbbae29..7f2031d 100644 --- a/static/library/sol.svg +++ b/static/library/sol.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/solidjs.svg b/static/library/solidjs.svg index fb49ab9..68c58ef 100644 --- a/static/library/solidjs.svg +++ b/static/library/solidjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/spotify.svg b/static/library/spotify.svg index 03d69b7..2d0e997 100644 --- a/static/library/spotify.svg +++ b/static/library/spotify.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/spring.svg b/static/library/spring.svg index ce9bba0..50724a2 100644 --- a/static/library/spring.svg +++ b/static/library/spring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/sql-server.svg b/static/library/sql-server.svg index 463553f..da4430e 100644 --- a/static/library/sql-server.svg +++ b/static/library/sql-server.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/sst.svg b/static/library/sst.svg index 970dab1..1d1e89a 100644 --- a/static/library/sst.svg +++ b/static/library/sst.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/stackblitz.svg b/static/library/stackblitz.svg index 76b153d..8cbe69f 100644 --- a/static/library/stackblitz.svg +++ b/static/library/stackblitz.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/stately.svg b/static/library/stately.svg index b47c99e..8653a28 100644 --- a/static/library/stately.svg +++ b/static/library/stately.svg @@ -1 +1 @@ - + diff --git a/static/library/stately_dark.svg b/static/library/stately_dark.svg index e198d6b..b76c16b 100644 --- a/static/library/stately_dark.svg +++ b/static/library/stately_dark.svg @@ -1 +1 @@ - + diff --git a/static/library/stimulus.svg b/static/library/stimulus.svg index b87d453..6788477 100644 --- a/static/library/stimulus.svg +++ b/static/library/stimulus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/storyblok.svg b/static/library/storyblok.svg index 0fdd825..9302f6a 100644 --- a/static/library/storyblok.svg +++ b/static/library/storyblok.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/storybook.svg b/static/library/storybook.svg index db49668..97a05b5 100644 --- a/static/library/storybook.svg +++ b/static/library/storybook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/strapi.svg b/static/library/strapi.svg index 98ff23c..ed2733f 100644 --- a/static/library/strapi.svg +++ b/static/library/strapi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/sublimetext.svg b/static/library/sublimetext.svg index 19ca790..8d666cf 100644 --- a/static/library/sublimetext.svg +++ b/static/library/sublimetext.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/supabase.svg b/static/library/supabase.svg index a40b801..19ee8b0 100644 --- a/static/library/supabase.svg +++ b/static/library/supabase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/surrealdb.svg b/static/library/surrealdb.svg index 5c0e15f..aa81bc1 100644 --- a/static/library/surrealdb.svg +++ b/static/library/surrealdb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/svelte.svg b/static/library/svelte.svg index 578beb7..ae06c05 100644 --- a/static/library/svelte.svg +++ b/static/library/svelte.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/tailwindcss.svg b/static/library/tailwindcss.svg index d977ed9..03c4c78 100644 --- a/static/library/tailwindcss.svg +++ b/static/library/tailwindcss.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/telegram.svg b/static/library/telegram.svg index 4baf0ee..2800caa 100644 --- a/static/library/telegram.svg +++ b/static/library/telegram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/tiktok.svg b/static/library/tiktok.svg index ffc7a94..1c3eca0 100644 --- a/static/library/tiktok.svg +++ b/static/library/tiktok.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/turbopack.svg b/static/library/turbopack.svg index 2d56def..025792b 100644 --- a/static/library/turbopack.svg +++ b/static/library/turbopack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/turborepo.svg b/static/library/turborepo.svg index a221bc9..6f251d5 100644 --- a/static/library/turborepo.svg +++ b/static/library/turborepo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/twilio.svg b/static/library/twilio.svg index 73e3e99..33198b8 100644 --- a/static/library/twilio.svg +++ b/static/library/twilio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/twitter.svg b/static/library/twitter.svg index 3cc45a4..0819971 100644 --- a/static/library/twitter.svg +++ b/static/library/twitter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/typescript.svg b/static/library/typescript.svg index b17d32a..a2688f3 100644 --- a/static/library/typescript.svg +++ b/static/library/typescript.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/upstash.svg b/static/library/upstash.svg index 2cded71..f4d0e2d 100644 --- a/static/library/upstash.svg +++ b/static/library/upstash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/vercel.svg b/static/library/vercel.svg index ef721fe..611c021 100644 --- a/static/library/vercel.svg +++ b/static/library/vercel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/vercel_dark.svg b/static/library/vercel_dark.svg index f543bed..7596891 100644 --- a/static/library/vercel_dark.svg +++ b/static/library/vercel_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/visual-studio.svg b/static/library/visual-studio.svg index ed7f00e..eb34a0f 100644 --- a/static/library/visual-studio.svg +++ b/static/library/visual-studio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/vitejs.svg b/static/library/vitejs.svg index 83b9c3e..0f73ea3 100644 --- a/static/library/vitejs.svg +++ b/static/library/vitejs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/vitest.svg b/static/library/vitest.svg index 1c114db..e901c28 100644 --- a/static/library/vitest.svg +++ b/static/library/vitest.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/vscode.svg b/static/library/vscode.svg index b7d16fd..1ea3678 100644 --- a/static/library/vscode.svg +++ b/static/library/vscode.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/vue.svg b/static/library/vue.svg index 65531d8..c06c98e 100644 --- a/static/library/vue.svg +++ b/static/library/vue.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/warp.svg b/static/library/warp.svg index 493b333..e43b8d5 100644 --- a/static/library/warp.svg +++ b/static/library/warp.svg @@ -1,5 +1,5 @@ - + diff --git a/static/library/whatsapp.svg b/static/library/whatsapp.svg index e02bfc8..a7dcab7 100644 --- a/static/library/whatsapp.svg +++ b/static/library/whatsapp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/windicss.svg b/static/library/windicss.svg index 57fda9f..eb8cdb8 100644 --- a/static/library/windicss.svg +++ b/static/library/windicss.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/windows.svg b/static/library/windows.svg index 6778874..853c7f4 100644 --- a/static/library/windows.svg +++ b/static/library/windows.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/xbox.svg b/static/library/xbox.svg index eb71b82..82cc448 100644 --- a/static/library/xbox.svg +++ b/static/library/xbox.svg @@ -1 +1 @@ -Xbox Logo \ No newline at end of file +Xbox Logo \ No newline at end of file diff --git a/static/library/xstate.svg b/static/library/xstate.svg index 461ed3a..ae9c4eb 100644 --- a/static/library/xstate.svg +++ b/static/library/xstate.svg @@ -1 +1 @@ - + diff --git a/static/library/xstate_dark.svg b/static/library/xstate_dark.svg index ba17ed8..738589d 100644 --- a/static/library/xstate_dark.svg +++ b/static/library/xstate_dark.svg @@ -1 +1 @@ - + diff --git a/static/library/youtube.svg b/static/library/youtube.svg index e68dbf2..8096f24 100644 --- a/static/library/youtube.svg +++ b/static/library/youtube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/zeabur-dark.svg b/static/library/zeabur-dark.svg index ec0926c..b0ad02e 100644 --- a/static/library/zeabur-dark.svg +++ b/static/library/zeabur-dark.svg @@ -1,4 +1,4 @@ - + diff --git a/static/library/zeabur-light.svg b/static/library/zeabur-light.svg index 872bddc..0615301 100644 --- a/static/library/zeabur-light.svg +++ b/static/library/zeabur-light.svg @@ -1,4 +1,4 @@ - + diff --git a/static/library/zig.svg b/static/library/zig.svg index f733d27..c0eab93 100644 --- a/static/library/zig.svg +++ b/static/library/zig.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From 8d649eaa1aeb296d33c2107756f13c1955abd91e Mon Sep 17 00:00:00 2001 From: pheralb Date: Wed, 27 Dec 2023 17:30:03 +0000 Subject: [PATCH 4/4] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Update=20fix-viewbo?= =?UTF-8?q?x=20cli.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fix-viewbox/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fix-viewbox/index.js b/fix-viewbox/index.js index b442dea..1b0d80f 100644 --- a/fix-viewbox/index.js +++ b/fix-viewbox/index.js @@ -24,14 +24,14 @@ async function fixViewbox() { .toString() .replace('