Skip to content

Commit 7045c74

Browse files
committed
Small tweaks
1 parent fb6ed21 commit 7045c74

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.prettierignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist/
2+
webview-ui/

src/scripts/generate-types.mts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ async function main() {
1919
await fs.writeFile("exports/types.ts", types.join("\n\n"))
2020

2121
await $`npx tsup exports/interface.ts --dts-only -d out`
22-
await fs.copyFile('out/interface.d.ts', 'exports/roo-code.d.ts')
22+
await fs.copyFile("out/interface.d.ts", "exports/roo-code.d.ts")
23+
await fs.rm("out", { recursive: true })
2324

2425
await $`npx prettier --write exports/types.ts exports/roo-code.d.ts`
2526
}

0 commit comments

Comments
 (0)