mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
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:
parent
5103345746
commit
35231e9d37
3 changed files with 3 additions and 3 deletions
|
@ -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`
|
||||||
|
|
|
@ -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": [
|
||||||
|
|
|
@ -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
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue