chore(deps): update typescript-eslint monorepo to v8 (major) (#11598)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
renovate[bot] 2024-08-05 19:13:00 +00:00 committed by GitHub
parent bb3d9b6306
commit 2821e0bf95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 358 additions and 324 deletions

View file

@ -12,9 +12,13 @@
let textarea: HTMLTextAreaElement;
$: newContent = content;
$: if (textarea) {
$: {
// re-visit with svelte 5. runes will make this better.
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
newContent;
void tick().then(() => autoGrowHeight(textarea));
if (textarea) {
void tick().then(() => autoGrowHeight(textarea));
}
}
const updateContent = () => {