include validating @types/* packages' major version in flipper lint ci

Summary: `lint` is already called by CI. No further work is needed.

Reviewed By: LukeDefeo, passy

Differential Revision: D49188675

fbshipit-source-id: 731c21567af329fab4125869bcbea8cc9561a5d3
This commit is contained in:
Anton Kastritskiy
2023-09-12 08:26:22 -07:00
committed by Facebook GitHub Bot
parent cb4446d76c
commit a52757aadf

View File

@@ -133,9 +133,10 @@
"docs": "cd ../website && yarn start",
"fix": "eslint . --fix --ext .js,.ts,.tsx",
"flipper-server": "cross-env NODE_ENV=development ./ts-node scripts/start-flipper-server-dev.tsx",
"lint": "yarn lint:eslint && yarn lint:tsc && yarn tsc-plugins",
"lint": "yarn lint:eslint && yarn lint:tsc && yarn tsc-plugins && yarn run lint:types-deps",
"lint:eslint": "eslint . --ext .js,.ts,.tsx",
"lint:tsc": "tsc && tsc -p tsc-root/tsconfig.json --noemit",
"lint:types-deps": "./ts-node ./scripts/verify-types-dependencies.tsx",
"list-plugins": "./ts-node scripts/list-plugins.tsx",
"open-dist": "open ../dist/mac/Flipper.app --args --launcher=false --inspect=9229",
"postinstall": "patch-package && yarn --cwd plugins install --mutex network:30331 && yarn tsc -b pkg-lib/tsconfig.json && ./ts-node scripts/remove-plugin-entry-points.tsx && yarn build:tsc && yarn build:themes",