Init rebase to Svelte and TS

This commit is contained in:
2025-11-08 09:43:14 +01:00
committed by Kamil Olszewski
parent 1af139201d
commit 4428cc7e8a
61 changed files with 12624 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
<script lang="ts">
let { path, output }: { path: string; output: any } = $props(); //TODO: change any to matching
</script>
<p class="cwd" id="cwd">{path}</p>
<div class="pointer-wrapper mr-4 mb-2.5 flex flex-row items-center font-terminal">
<span class="pointer pr-2">$</span>
<!-- prettier-ignore -->
<div style="white-space: preserve;" class=" relative wrap-break-word">{output}</div>
</div>