-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'add-header-links-in-sidebar' of https://github.com/deno…
…land/docs into add-header-links-in-sidebar
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"CLI_VERSION": "2.1.3" | ||
"CLI_VERSION": "2.1.4" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3835,7 +3835,7 @@ | |
}, | ||
{ | ||
"name": "outdated", | ||
"about": "Find and update outdated dependencies.\nBy default, outdated dependencies are only displayed.\n\nDisplay outdated dependencies:\n \u001b[38;5;245mdeno outdated\u001b[39m\n \u001b[38;5;245mdeno outdated --compatible\u001b[39m\n\nUpdate dependencies:\n \u001b[38;5;245mdeno outdated --update\u001b[39m\n \u001b[38;5;245mdeno outdated --update --latest\u001b[39m\n \u001b[38;5;245mdeno outdated --update\u001b[39m\n\nFilters can be used to select which packages to act on. Filters can include wildcards (*) to match multiple packages.\n \u001b[38;5;245mdeno outdated --update --latest \"@std/*\"\u001b[39m\n \u001b[38;5;245mdeno outdated --update --latest \"react*\"\u001b[39m\nNote that filters act on their aliases configured in deno.json / package.json, not the actual package names:\n Given \"foobar\": \"npm:[email protected]\" in deno.json or package.json, the filter \"foobar\" would update npm:react to\n the latest version.\n \u001b[38;5;245mdeno outdated --update --latest foobar\u001b[39m\nFilters can be combined, and negative filters can be used to exclude results:\n \u001b[38;5;245mdeno outdated --update --latest \"@std/*\" \"!@std/fmt*\"\u001b[39m\n\nSpecific version requirements to update to can be specified:\n \u001b[38;5;245mdeno outdated --update @std/fmt@^1.0.2\u001b[39m\n", | ||
"about": "Find and update outdated dependencies.\nBy default, outdated dependencies are only displayed.\n\nDisplay outdated dependencies:\n \u001b[38;5;245mdeno outdated\u001b[39m\n \u001b[38;5;245mdeno outdated --compatible\u001b[39m\n\nUpdate dependencies to latest semver compatible versions:\n \u001b[38;5;245mdeno outdated --update\u001b[39m\nUpdate dependencies to latest versions, ignoring semver requirements:\n \u001b[38;5;245mdeno outdated --update --latest\u001b[39m\n\nFilters can be used to select which packages to act on. Filters can include wildcards (*) to match multiple packages.\n \u001b[38;5;245mdeno outdated --update --latest \"@std/*\"\u001b[39m\n \u001b[38;5;245mdeno outdated --update --latest \"react*\"\u001b[39m\nNote that filters act on their aliases configured in deno.json / package.json, not the actual package names:\n Given \"foobar\": \"npm:[email protected]\" in deno.json or package.json, the filter \"foobar\" would update npm:react to\n the latest version.\n \u001b[38;5;245mdeno outdated --update --latest foobar\u001b[39m\nFilters can be combined, and negative filters can be used to exclude results:\n \u001b[38;5;245mdeno outdated --update --latest \"@std/*\" \"!@std/fmt*\"\u001b[39m\n\nSpecific version requirements to update to can be specified:\n \u001b[38;5;245mdeno outdated --update @std/fmt@^1.0.2\u001b[39m\n", | ||
"args": [ | ||
{ | ||
"name": "filters", | ||
|