Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/2172 New script which runs "tsc" for all plugins, receives list of errors and then checks which plugins are affected. It works for shared libs too, e.g. if there is an error in a shared library, then all plugins dependant on it will be counted as affected. For convenience, script saves list of errors affecting each plugin to "tsc-errors.log" in plugin folder. This script will be used for automatic type-checking plugins against current "stable" and "insiders" versions of Flipper. An alternative to this implementation would be to simply run "tsc" for each plugin individually, but such implementation takes a lot of time (5+ sec per plugin) and so cannot be effectively used on diffs. Reviewed By: mweststrate Differential Revision: D27499765 fbshipit-source-id: fcbbfc94a13e6c7c5beff0c889a929f84c41b2dd
26 lines
548 B
JSON
26 lines
548 B
JSON
{
|
|
"name": "flipper-public-plugins",
|
|
"private": true,
|
|
"title": "Flipper Public Plugins",
|
|
"workspaces": {
|
|
"packages": [
|
|
"*"
|
|
],
|
|
"nohoist": [
|
|
"flipper-plugin-kaios-big-allocations/firefox-client",
|
|
"flipper-plugin-kaios-big-allocations/patch-package"
|
|
]
|
|
},
|
|
"resolutions": {
|
|
"react": "17.0.1",
|
|
"react-dom": "17.0.1"
|
|
},
|
|
"bugs": {
|
|
"email": "oncall+flipper@xmail.facebook.com",
|
|
"url": "https://fb.workplace.com/groups/flippersupport/"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
}
|