Skip to content

Commit

Permalink
add doc about git clean for working around ts issues (#111572)
Browse files Browse the repository at this point in the history
* add doc about git clean for working around ts issues

* Update dev_docs/troubleshooting.mdx

Co-authored-by: Spencer <[email protected]>

* Update dev_docs/troubleshooting.mdx

Co-authored-by: Spencer <[email protected]>

* Update troubleshooting.mdx

Co-authored-by: Spencer <[email protected]>
  • Loading branch information
stacey-gammon and Spencer authored Sep 9, 2021
1 parent 7f441b4 commit a7c3172
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions dev_docs/troubleshooting.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
id: kibTroubleshooting
slug: /kibana-dev-docs/troubleshooting
title: Troubleshooting
summary: A collection of tips for working around strange issues.
date: 2021-09-08
tags: ['kibana', 'onboarding', 'dev', 'troubleshooting']
---

### Typescript issues

When switching branches, sometimes the TypeScript cache can get mixed up and show some invalid errors. If you run into TypeScript issues (invalid errors, or if it's taking too long to build types), here a few things to try.

1. Build TypeScript references with the clean command.

```
node scripts/build_ts_refs --clean
```

2. Restore your repository to a totally fresh state by running `git clean`

```
# dry-run the clean to see what will be deleted
git clean -fdxn -e /config -e /.vscode
# review the files which will be deleted, consider adding some more excludes (-e)
# re-run without the dry-run (-n) flag to actually delete the files
```

0 comments on commit a7c3172

Please sign in to comment.