Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion replacements.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"CLI_VERSION": "2.7.14"
"CLI_VERSION": "2.8.0"
}
13 changes: 11 additions & 2 deletions runtime/reference/cli/_commands_reference.json
Original file line number Diff line number Diff line change
Expand Up @@ -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[=<FILES>...]"
},
Expand Down Expand Up @@ -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[=<FILES>...]"
},
Expand Down Expand Up @@ -7503,6 +7503,15 @@
"help_heading": "Upgrade options",
"usage": "--checksum <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,
Expand Down
4 changes: 2 additions & 2 deletions runtime/reference/cli/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading