Skip to content

Commit

Permalink
refactor(site): rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrgm committed Nov 15, 2024
1 parent 0feed9d commit 0a0248d
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/site/src/pages/examples/sqlite.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ExamplePage from "../../components/ExamplePage.astro";
title="SQlite"
description="Initialize a SQLite database and perform a select."
example={{
code: await import("./sqlite.code.tsx?raw"),
code: await import("./_sqlite.code.tsx?raw"),
pkgDependencies: { "better-sqlite3": "latest" },
pkgDevDependencies: { "@types/better-sqlite3": "latest" },
}}
Expand Down
2 changes: 1 addition & 1 deletion packages/site/src/pages/examples/track-progress.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ import ExamplePage from "../../components/ExamplePage.astro";
wip
title="Progress"
description="Track the progress of a task."
example={await import("./track-progress.code.tsx?raw")}
example={await import("./_track-progress.code.tsx?raw")}
/>
2 changes: 1 addition & 1 deletion packages/site/src/pages/examples/upload-file.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ import ExamplePage from "../../components/ExamplePage.astro";
wip
title="Upload file"
description="Upload a file with validation and using a storage."
example={await import("./upload-file.code.tsx?raw")}
example={await import("./_upload-file.code.tsx?raw")}
/>

0 comments on commit 0a0248d

Please sign in to comment.