Files
yoga/gentest/package.json
Nick Gerleman f023702f75 Make gentest-validate more graceful of different file organization (#1672)
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
2024-06-24 21:47:01 -07:00

26 lines
752 B
JSON

{
"name": "gentest",
"version": "0.0.0",
"private": true,
"scripts": {
"gentest": "node --disable-warning=ExperimentalWarning --loader=babel-register-esm ./gentest-driver.ts",
"gentest-validate": "node --disable-warning=ExperimentalWarning --loader=babel-register-esm ./gentest-validate.ts"
},
"type": "module",
"dependencies": {
"minimist": "^1.2.8",
"selenium-webdriver": "^4.16.0",
"signedsource": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@tsconfig/node18": "^18.2.2",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.3",
"@types/selenium-webdriver": "^4.1.21",
"babel-register-esm": "^1.2.5",
"glob": "^10.4.2"
}
}