From 110aa5974f49e945a96f9e0cd2e5df028d712b12 Mon Sep 17 00:00:00 2001 From: bartlomieju Date: Fri, 22 May 2026 10:52:01 +0000 Subject: [PATCH 1/2] Updated files for 2.8.0 --- replacements.json | 2 +- runtime/reference/cli/_commands_reference.json | 13 +++++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/replacements.json b/replacements.json index b51447b0b..154bad4be 100644 --- a/replacements.json +++ b/replacements.json @@ -1,3 +1,3 @@ { - "CLI_VERSION": "2.7.14" + "CLI_VERSION": "2.8.0" } diff --git a/runtime/reference/cli/_commands_reference.json b/runtime/reference/cli/_commands_reference.json index 61f9ad414..2fbf5a5ca 100644 --- a/runtime/reference/cli/_commands_reference.json +++ b/runtime/reference/cli/_commands_reference.json @@ -427,7 +427,7 @@ "short": null, "long": "watch-hmr", "required": false, - "help": "Watch for file changes and restart process automatically.\n \u001b[38;5;245mLocal files from entry point module graph are watched by default.\n Additional paths might be watched by passing them as arguments to this flag.\u001b[39m", + "help": "Watch for file changes and hot-replace modules. The process restarts if hot replacement fails.\n \u001b[38;5;245mLocal files from entry point module graph are watched by default.\n Additional paths might be watched by passing them as arguments to this flag.\u001b[39m", "help_heading": "File watching options", "usage": "--watch-hmr[=...]" }, @@ -1011,7 +1011,7 @@ "short": null, "long": "watch-hmr", "required": false, - "help": "Watch for file changes and restart process automatically.\n \u001b[38;5;245mLocal files from entry point module graph are watched by default.\n Additional paths might be watched by passing them as arguments to this flag.\u001b[39m", + "help": "Watch for file changes and hot-replace modules. The process restarts if hot replacement fails.\n \u001b[38;5;245mLocal files from entry point module graph are watched by default.\n Additional paths might be watched by passing them as arguments to this flag.\u001b[39m", "help_heading": "File watching options", "usage": "--watch-hmr[=...]" }, @@ -7503,6 +7503,15 @@ "help_heading": "Upgrade options", "usage": "--checksum " }, + { + "name": "no-delta", + "short": null, + "long": "no-delta", + "required": false, + "help": "Disable delta updates and always download the full archive", + "help_heading": "Upgrade options", + "usage": "--no-delta" + }, { "name": "cert", "short": null, From 22c2d07c5d86d62a575a7537528725749eba6937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 22 May 2026 12:55:39 +0200 Subject: [PATCH 2/2] fix formatting --- runtime/reference/cli/task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/reference/cli/task.md b/runtime/reference/cli/task.md index 76f724761..214e61327 100644 --- a/runtime/reference/cli/task.md +++ b/runtime/reference/cli/task.md @@ -98,8 +98,8 @@ Running `deno task "build:*"` will run both `build:client` and `build:server` tasks. For multi-word task names, we recommend using `:` as the separator (e.g. -`build:client`, `test:unit`, `lint:fix`) to match the convention used in the -npm ecosystem and to group related tasks for wildcard matching. +`build:client`, `test:unit`, `lint:fix`) to match the convention used in the npm +ecosystem and to group related tasks for wildcard matching. :::note