Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add command to navigate to and run svelte-kit-demo #881

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ pnpm i
pnpm -r build
```

You should now be able to run the [examples](examples) by navigating to one of the directories and doing `pnpm dev`.
You should now be able to run the [examples](examples) by navigating to one of the directories and doing `pnpm dev`. For example, to run `svelte-kit-demo` enter the following commands:

```bash
cd examples/svelte-kit-demo
pnpm dev
```

Run `pnpm dev` inside the `packages/kit` directory to continually rebuild `@sveltejs/kit` as you make changes to SvelteKit. Restarting the example/test apps will cause the newly built version to be used.

Expand Down