Remove references to old type check script (#202825)

## Summary

Remove references to `scripts/build_ts_refs` which doesn't exist anymore

Co-authored-by: Alex Szabo <alex.szabo@elastic.co>
This commit is contained in:
Brad White 2024-12-18 12:38:30 -07:00 committed by GitHub
parent 5103345746
commit 35231e9d37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ When switching branches, sometimes the TypeScript cache can get mixed up and sho
1. Build TypeScript references with the clean command. 1. Build TypeScript references with the clean command.
``` ```
node scripts/build_ts_refs --clean node scripts/type_check.js --clean-cache
``` ```
2. Restore your repository to a totally fresh state by running `git clean` 2. Restore your repository to a totally fresh state by running `git clean`

View file

@ -35,7 +35,7 @@ async function isRootRefsConfigSelfManaged() {
function generateTsConfig(refs: string[]) { function generateTsConfig(refs: string[]) {
return dedent` return dedent`
// This file is automatically updated when you run \`node scripts/build_ts_refs\`. // This file is automatically updated when you run \`node scripts/type_check\`.
{ {
"include": [], "include": [],
"references": [ "references": [

View file

@ -40,5 +40,5 @@ If you run into tsc errors that seem unrelated to the cases plugin try executing
```bash ```bash
cd <kibana root dir> cd <kibana root dir>
npx yarn kbn bootstrap npx yarn kbn bootstrap
node scripts/build_ts_refs.js --clean --no-cache node scripts/type_check.js --clean-cache
``` ```