From 6019ef0a43d115d85ddff13a20dd1b84008a7c0f Mon Sep 17 00:00:00 2001 From: Sathya Gunsasekaran Date: Tue, 23 Apr 2024 12:28:40 +0100 Subject: [PATCH] [healthcheck] New package for checking violations This package will be used to check for violations of the rules of react and other heuristics to determine the health of a codebase. The health of a codebase gives an expectation of how easy it will be onboard on to the compiler. ghstack-source-id: b52fc4e44f704e0544f15066d8905825a256dc4a Pull Request resolved: https://github.com/facebook/react-forget/pull/2884 --- compiler/packages/health-check/package.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 compiler/packages/health-check/package.json diff --git a/compiler/packages/health-check/package.json b/compiler/packages/health-check/package.json new file mode 100644 index 0000000000..16c21ab4ab --- /dev/null +++ b/compiler/packages/health-check/package.json @@ -0,0 +1,17 @@ +{ + "name": "healthcheck", + "version": "0.0.0", + "description": "Health check script to test violations of the rules of react.", + "scripts": { + "build": "rimraf dist && tsc --build", + "test": "echo 'no tests'" + }, + "dependencies": { + }, + "devDependencies": { + }, + "engines": { + "node": "^14.17.0 || ^16.0.0 || >= 18.0.0" + }, + "license": "MIT" +}