mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-07-07 21:15:03 +00:00

* fix: dep hash * dev: exp concurrent hash * feat: fully concurrent lsp * dev: disable concurrent compilation
8 lines
294 B
PowerShell
8 lines
294 B
PowerShell
$InstallPath = ".\editors\vscode\out"
|
|
if (-Not (Test-Path $InstallPath)) {
|
|
New-Item -ItemType Directory $InstallPath
|
|
}
|
|
|
|
cargo build --release --bin tinymist
|
|
Copy-Item -Path ".\target\release\tinymist.exe" -Destination "$InstallPath\tinymist.exe" -Force
|
|
cargo insta test -p tests --accept
|