mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
* feat: migrate steal_sync to snapshot_sync * feat: correctly make world/analysis snapshot * very rayon * dev: recover async lsp request * gg * dev: pin * fix: make server stable * dev: disable concurrent server by default * dev: very sync
8 lines
319 B
PowerShell
8 lines
319 B
PowerShell
$InstallPath = ".\editors\vscode\out"
|
|
if (-Not (Test-Path $InstallPath)) {
|
|
New-Item -ItemType Directory $InstallPath
|
|
}
|
|
|
|
cargo build --release --bin tinymist --features stable-server
|
|
Copy-Item -Path ".\target\release\tinymist.exe" -Destination "$InstallPath\tinymist.exe" -Force
|
|
cargo insta test -p tests --accept
|