Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove references to old type check script #202825

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev_docs/getting_started/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

```
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`
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-ts-type-check-cli/root_refs_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async function isRootRefsConfigSelfManaged() {

function generateTsConfig(refs: string[]) {
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": [],
"references": [
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/rule_registry/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ If you run into tsc errors that seem unrelated to the cases plugin try executing
```bash
cd <kibana root dir>
npx yarn kbn bootstrap
node scripts/build_ts_refs.js --clean --no-cache
node scripts/type_check.js --clean-cache
```
Loading