fix(shared): add missing 'fix' script alias

apps/shared had lint:fix but not the 'fix' alias that other workspaces
have. The js-tests check job runs 'npm run fix' as a second step, so
this workspace was failing with 'Missing script: fix'.
This commit is contained in:
ethernet 2026-07-10 20:07:34 -04:00 committed by kshitij
parent 02613a4d50
commit 3102fc9a66

View file

@ -10,6 +10,7 @@
"scripts": {
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"fix": "npm run lint:fix",
"typecheck": "tsc -p . --noEmit",
"check": "npm run typecheck"
},