From d1413fc71edf753f19228ec2617bf90998c6a875 Mon Sep 17 00:00:00 2001 From: Rickylabs Date: Thu, 2 Jul 2026 18:37:27 +0200 Subject: [PATCH 1/2] Add Deno toolchain support for TypeScript AppHosts Extends the CLI TypeScript AppHost toolchain resolver to detect and drive a Deno toolchain, mirroring the existing npm/bun/yarn/pnpm support. - Detect Deno via a `packageManager: "deno@x"` hint or deno.lock/deno.json/ deno.jsonc markers (before the npm package-lock fallback). - Generate `deno install`, `deno check {appHostFile}` (native no-emit type-check), `deno run -A {appHostFile}`, and `deno run -A --check --watch {appHostFile}`. Deno is not permissive for package.json projects, so `-A` grants the host access the AppHost needs; `--check` makes each watch restart type-check to match the nodemon "typecheck && run" behavior. The native watcher replaces nodemon. - Root delegate scripts use `deno task --cwd