Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1672 `gentest-validate` checks signedsource for generated tests. D58307002 adds a new directory under `java/tests/com/facebook/yoga/`, which [confuses](https://github.com/facebook/yoga/actions/runs/9653979292/job/26627690870) the current directory traversal logic. This replaces the traversal with `glob`, and makes us skip files without a signature, instead of special-casing the Java directory. Reviewed By: yungsters Differential Revision: D58987293 fbshipit-source-id: a5640f5faee4aa40879c266211c5e736a0b077be
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "yoga-layout",
|
|
"version": "0.0.0",
|
|
"description": "An embeddable and performant flexbox layout engine with bindings for multiple languages",
|
|
"license": "MIT",
|
|
"author": "Meta Open Source",
|
|
"homepage": "https://yogalayout.dev/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:facebook/yoga.git"
|
|
},
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./load": "./src/load.ts"
|
|
},
|
|
"files": [
|
|
"dist/binaries/**",
|
|
"dist/src/**",
|
|
"src/**"
|
|
],
|
|
"scripts": {
|
|
"benchmark": "just benchmark --config just.config.cjs",
|
|
"build": "just build --config just.config.cjs",
|
|
"clang-format": "just clang-format --config just.config.cjs",
|
|
"clang-format:fix": "just clang-format --fix --config just.config.cjs",
|
|
"clean": "just clean --config just.config.cjs",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"prepack": "just prepack --config just.config.cjs",
|
|
"test": "just test --config just.config.cjs",
|
|
"tsc": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.23.0",
|
|
"@babel/core": "^7.23.0",
|
|
"@babel/preset-env": "^7.23.0",
|
|
"@babel/preset-typescript": "^7.23.0",
|
|
"@types/jest": "^29.5.1",
|
|
"@types/node": "^16.18.25",
|
|
"@types/which": "^3.0.0",
|
|
"@yogalayout/cmake-bin": "3.28.0-1",
|
|
"babel-register-esm": "^1.2.5",
|
|
"clang-format": "^1.8.0",
|
|
"glob": "^10.4.2",
|
|
"jest": "^29.3.1",
|
|
"just-scripts": "^2.1.0",
|
|
"ninja-binaries": "^1.11.1",
|
|
"which": "^3.0.0"
|
|
}
|
|
}
|