Skip to content
Merged
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
9 changes: 8 additions & 1 deletion apps/svelte.dev/scripts/sync-docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@ ln -s /path/to/wherever/you/cloned/sveltejs/kit repos/kit
ln -s /path/to/wherever/you/cloned/sveltejs/cli repos/cli
```

I have no idea what the equivalent Windows command would be.
For windows powershell (requires administrator privileges):

```bash
cd apps/svelte.dev
New-Item -Path .\repos\svelte -ItemType SymbolicLink -Value /path/to/wherever/you/cloned/sveltejs/svelte
New-Item -Path .\repos\kit -ItemType SymbolicLink -Value /path/to/wherever/you/cloned/sveltejs/kit
New-Item -Path .\repos\cli -ItemType SymbolicLink -Value /path/to/wherever/you/cloned/sveltejs/cli
```

## Syncing

Expand Down
Loading