Skip to content

Commit 678ea04

Browse files
committed
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 webpack#7493
1 parent 9a5330c commit 678ea04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
"node": ">= 20.9.0"
2525
},
2626
"scripts": {
27-
"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",
28-
"fetch": "run-s fetch-repos fetch:readmes fetch:supporters",
2927
"clean-dist": "rimraf ./dist",
3028
"clean-printable": "rimraf src/content/**/printable.mdx",
3129
"preclean": "run-s clean-dist clean-printable",
@@ -34,9 +32,11 @@
3432
"content": "node src/scripts/build-content-tree.mjs ./src/content ./src/_content.json",
3533
"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",
3634
"fetch-repos": "node src/utilities/fetch-package-repos.mjs",
35+
"fetch": "run-p fetch:*",
3736
"fetch:readmes": "node src/utilities/fetch-package-readmes.mjs",
3837
"fetch:supporters": "node src/utilities/fetch-supporters.mjs",
3938
"prebuild": "npm run clean",
39+
"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",
4040
"postbuild": "npm run sitemap",
4141
"build-test": "npm run build && http-server --port 3000 dist/",
4242
"serve-dist": "http-server --port 3000 dist/",

0 commit comments

Comments
 (0)