Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1672 This reworks `gentest-validate`, to be more resilient to changes like D58307002, which cause [validation failures](https://github.com/facebook/yoga/actions/runs/9653979292/job/26627690870) on the intrinsic sizing testing change, which currently causes failure due to the file traversal code not handling the presence of directories. Differential Revision: D58987293
31 lines
747 B
JSON
31 lines
747 B
JSON
{
|
|
"name": "yoga-repo",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"tsc": "yarn workspaces run tsc",
|
|
"gentest": "yarn workspace gentest run gentest",
|
|
"gentest-validate": "yarn workspace gentest run gentest-validate"
|
|
},
|
|
"workspaces": [
|
|
"javascript",
|
|
"gentest",
|
|
"website"
|
|
],
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
|
"@typescript-eslint/parser": "^5.30.5",
|
|
"eslint": "^8.30.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-jest": "^27.1.7",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "2.8.8",
|
|
"typescript": "5.0.4"
|
|
},
|
|
"resolutions": {
|
|
"cliui/wrap-ansi": "7.0.0"
|
|
}
|
|
}
|