Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1504 I aim to consume this via a github action or workflow. Separating out the CI configuration from the actual script. We could and should maybe change this script to take in arguments for the test dirs so it is more configurable, but getting the barebones down right now. Reviewed By: NickGerleman Differential Revision: D51999865 fbshipit-source-id: 5792c6eec5692943518fecefc6226d784c6f0ad8
28 lines
697 B
JSON
28 lines
697 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-next"
|
|
],
|
|
"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"
|
|
}
|
|
}
|