Skip to content

Commit 40e6863

Browse files
authored
feat: output warning of deno removal from installation scripts (#165)
1 parent 986c433 commit 40e6863

4 files changed

Lines changed: 14 additions & 0 deletions

File tree

scripts/install-dev.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,10 @@ main() {
381381
install_slack_cli "$@"
382382

383383
sleep 0.1
384+
>&2 echo -e "\x1b[1m⚠️ Warning: Starting on September 1, 2025, Deno will no longer be installed with this script!\x1b[0m"
385+
>&2 echo -e "⚠️ Warning: Apps built with Deno should install Deno separately:"
386+
>&2 echo -e "⚠️ Warning: https://docs.deno.com/runtime/getting_started/installation/"
387+
echo -e ""
384388
install_deno
385389

386390
echo

scripts/install-windows-dev.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,9 @@ trap {
360360
}
361361

362362
install_slack_cli $Alias $Version
363+
[Console]::Error.WriteLine("`n`e[1mWarning: Starting on September 1, 2025, Deno will no longer be installed with this script!`e[0m")
364+
[Console]::Error.WriteLine("Warning: Apps built with Deno should install Deno separately:")
365+
[Console]::Error.WriteLine("Warning: https://docs.deno.com/runtime/getting_started/installation/")
363366
install_deno $SkipDeno
364367
Write-Host "`nAdding developer tooling for an enhanced experience..."
365368
install_git $SkipGit

scripts/install-windows.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,9 @@ trap {
351351
}
352352

353353
install_slack_cli $Alias $Version
354+
[Console]::Error.WriteLine("`n`e[1mWarning: Starting on September 1, 2025, Deno will no longer be installed with this script!`e[0m")
355+
[Console]::Error.WriteLine("Warning: Apps built with Deno should install Deno separately:")
356+
[Console]::Error.WriteLine("Warning: https://docs.deno.com/runtime/getting_started/installation/")
354357
install_deno $SkipDeno
355358
Write-Host "`nAdding developer tooling for an enhanced experience..."
356359
install_git $SkipGit

scripts/install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,10 @@ main() {
380380
install_slack_cli "$@"
381381

382382
sleep 0.1
383+
>&2 echo -e "\x1b[1m⚠️ Warning: Starting on September 1, 2025, Deno will no longer be installed with this script!\x1b[0m"
384+
>&2 echo -e "⚠️ Warning: Apps built with Deno should install Deno separately:"
385+
>&2 echo -e "⚠️ Warning: https://docs.deno.com/runtime/getting_started/installation/"
386+
echo -e ""
383387
install_deno
384388

385389
echo

0 commit comments

Comments
 (0)