From 678ea04887a05b93f53451927d58127cf62cfa81 Mon Sep 17 00:00:00 2001 From: Abhijeet Kumar Singh Date: Thu, 9 Jan 2025 20:08:14 +0530 Subject: [PATCH] feat: add tooltips to social media icons This commit adds tooltips to the social media icons in the navigation bar to improve UX by showing which platform each icon represents on hover. Fixes #7493 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4328591cc38a..64e7194c1f50 100644 --- a/package.json +++ b/package.json @@ -24,8 +24,6 @@ "node": ">= 20.9.0" }, "scripts": { - "build": "webpack --config webpack.prod.mjs --define-process-env-node-env production && run-s printable content && webpack --config webpack.ssg.mjs --define-process-env-node-env production --env ssg", - "fetch": "run-s fetch-repos fetch:readmes fetch:supporters", "clean-dist": "rimraf ./dist", "clean-printable": "rimraf src/content/**/printable.mdx", "preclean": "run-s clean-dist clean-printable", @@ -34,9 +32,11 @@ "content": "node src/scripts/build-content-tree.mjs ./src/content ./src/_content.json", "bundle-analyze": "run-s clean fetch content && webpack --config webpack.prod.mjs --define-process-env-node-env production && run-s printable content && webpack --config webpack.ssg.mjs --define-process-env-node-env production --env ssg --profile --json > stats.json && webpack-bundle-analyzer stats.json", "fetch-repos": "node src/utilities/fetch-package-repos.mjs", + "fetch": "run-p fetch:*", "fetch:readmes": "node src/utilities/fetch-package-readmes.mjs", "fetch:supporters": "node src/utilities/fetch-supporters.mjs", "prebuild": "npm run clean", + "build": "run-s fetch-repos fetch content && webpack --config webpack.prod.mjs --define-process-env-node-env production && run-s printable content && webpack --config webpack.ssg.mjs --define-process-env-node-env production --env ssg", "postbuild": "npm run sitemap", "build-test": "npm run build && http-server --port 3000 dist/", "serve-dist": "http-server --port 3000 dist/",