Skip to content

Commit

Permalink
Merge branch 'main' into minor_style_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisjofrank authored Jan 28, 2025
2 parents 6bb2420 + 399bf8e commit 714a302
Show file tree
Hide file tree
Showing 4 changed files with 404 additions and 1 deletion.
5 changes: 5 additions & 0 deletions examples/_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,11 @@ export const sidebar = [
externalURL: "https://www.youtube.com/watch?v=MDPauM8fZDE",
type: "video",
},
{
label: "Build a SolidJS app",
id: "/examples/solidjs_tutorial",
type: "tutorial",
},
{
label: "Build a React app",
id: "/examples/react_app_video",
Expand Down
2 changes: 1 addition & 1 deletion examples/scripts/subprocesses_spawn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const process = command.spawn();
// We can now pipe the input into stdin. To do this we must first get
// a writer from the stream and write to it
const writer = process.stdin.getWriter();
writer.write(new TextEncoder().encode("console.log('hello')"));
await writer.write(new TextEncoder().encode("console.log('hello')"));
writer.releaseLock();

// We must then close stdin
Expand Down
Binary file added examples/tutorials/images/how-to/solidjs/demo.mp4
Binary file not shown.
Loading

0 comments on commit 714a302

Please sign in to comment.