diff --git a/replacements.json b/replacements.json index 1bec918f3..fe446cbfc 100644 --- a/replacements.json +++ b/replacements.json @@ -1,3 +1,3 @@ { - "CLI_VERSION": "2.7.1" + "CLI_VERSION": "2.7.2" } diff --git a/runtime/reference/cli/_commands_reference.json b/runtime/reference/cli/_commands_reference.json index 49fe9c7b5..8604827fe 100644 --- a/runtime/reference/cli/_commands_reference.json +++ b/runtime/reference/cli/_commands_reference.json @@ -143,15 +143,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -646,15 +637,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -1139,6 +1121,15 @@ "help": "assume unprefixed package names are jsr packages", "help_heading": null, "usage": "--jsr" + }, + { + "name": "save-exact", + "short": null, + "long": "save-exact", + "required": false, + "help": "Save exact version without the caret (^)", + "help_heading": null, + "usage": "--save-exact" } ], "subcommands": [], @@ -1210,6 +1201,15 @@ "help": "Return exit code 0 if remote service(s) responds with an error.", "help_heading": null, "usage": "--ignore-registry-errors" + }, + { + "name": "ignore", + "short": null, + "long": "ignore", + "required": false, + "help": "Ignore advisories matching the given CVE IDs", + "help_heading": null, + "usage": "--ignore " } ], "subcommands": [], @@ -1389,15 +1389,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -2036,6 +2027,15 @@ "help_heading": null, "usage": "--minify" }, + { + "name": "keep-names", + "short": null, + "long": "keep-names", + "required": false, + "help": "Keep function and class names", + "help_heading": null, + "usage": "--keep-names" + }, { "name": "code-splitting", "short": null, @@ -2511,15 +2511,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -2718,6 +2709,15 @@ "help_heading": null, "usage": "--doc-only" }, + { + "name": "check-js", + "short": null, + "long": "check-js", + "required": false, + "help": "Enable type-checking of JavaScript files (equivalent to `compilerOptions.checkJs: true`)", + "help_heading": null, + "usage": "--check-js" + }, { "name": "file", "short": null, @@ -2941,15 +2941,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -3256,6 +3247,15 @@ "help_heading": "Compile options", "usage": "--icon " }, + { + "name": "self-extracting", + "short": null, + "long": "self-extracting", + "required": false, + "help": "Create a self-extracting binary that extracts the embedded file system to disk on first run and then runs from there", + "help_heading": "Compile options", + "usage": "--self-extracting" + }, { "name": "ext", "short": null, @@ -3296,6 +3296,59 @@ "subcommands": [], "usage": "\u001b[37mUsage:\u001b[0m \u001b[32mdeno compile\u001b[0m \u001b[32m[OPTIONS]\u001b[0m \u001b[32m[SCRIPT_ARG]...\u001b[0m" }, + { + "name": "create", + "about": "scaffolds a project from a package", + "args": [ + { + "name": "package", + "short": null, + "long": null, + "required": false, + "help": null, + "help_heading": null, + "usage": "[PACKAGE]" + }, + { + "name": "package_args", + "short": null, + "long": null, + "required": false, + "help": null, + "help_heading": null, + "usage": "[ARGS]..." + }, + { + "name": "npm", + "short": null, + "long": "npm", + "required": false, + "help": "Treat unprefixed package names as npm packages", + "help_heading": null, + "usage": "--npm" + }, + { + "name": "jsr", + "short": null, + "long": "jsr", + "required": false, + "help": "Treat unprefixed package names as JSR packages", + "help_heading": null, + "usage": "--jsr" + }, + { + "name": "yes", + "short": "y", + "long": "yes", + "required": false, + "help": "Bypass the prompt and run with full permissions", + "help_heading": null, + "usage": "--yes" + } + ], + "subcommands": [], + "usage": "\u001b[37mUsage:\u001b[0m \u001b[32mdeno create\u001b[0m \u001b[32m[OPTIONS]\u001b[0m \u001b[32m[PACKAGE]\u001b[0m \u001b[32m[--\u001b[0m \u001b[32m[ARGS]...\u001b[0m\u001b[32m]\u001b[0m" + }, { "name": "completions", "about": "Output shell completion script to standard output.\n\n \u001b[38;5;245mdeno completions bash > /usr/local/etc/bash_completion.d/deno.bash\u001b[39m\n \u001b[38;5;245msource /usr/local/etc/bash_completion.d/deno.bash\u001b[39m", @@ -3826,15 +3879,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -4185,6 +4229,15 @@ "help_heading": "Formatting options", "usage": "--check" }, + { + "name": "fail-fast", + "short": null, + "long": "fail-fast", + "required": false, + "help": "Stop checking files on first format error", + "help_heading": "Formatting options", + "usage": "--fail-fast" + }, { "name": "ext", "short": null, @@ -4346,6 +4399,15 @@ "help_heading": null, "usage": "--npm" }, + { + "name": "jsr", + "short": null, + "long": "jsr", + "required": false, + "help": "Generate a project from a JSR package", + "help_heading": null, + "usage": "--jsr" + }, { "name": "lib", "short": null, @@ -4740,15 +4802,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -5127,6 +5180,15 @@ "help_heading": null, "usage": "--jsr" }, + { + "name": "save-exact", + "short": null, + "long": "save-exact", + "required": false, + "help": "Save exact version without the caret (^)", + "help_heading": null, + "usage": "--save-exact" + }, { "name": "lockfile-only", "short": null, @@ -5971,15 +6033,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -6393,15 +6446,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -6662,15 +6706,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -7520,15 +7555,6 @@ "help_heading": "Unstable options", "usage": "--unstable-sloppy-imports" }, - { - "name": "unstable-temporal", - "short": null, - "long": "unstable-temporal", - "required": false, - "help": "Enable unstable Temporal API", - "help_heading": "Unstable options", - "usage": "--unstable-temporal" - }, { "name": "unstable-tsgo", "short": null, @@ -7930,6 +7956,13 @@ "subcommands": [], "usage": "\u001b[37mUsage:\u001b[0m \u001b[32mdeno help compile\u001b[0m \u001b[32m[OPTIONS]\u001b[0m" }, + { + "name": "create", + "about": null, + "args": [], + "subcommands": [], + "usage": "\u001b[37mUsage:\u001b[0m \u001b[32mdeno help create\u001b[0m \u001b[32m[OPTIONS]\u001b[0m" + }, { "name": "completions", "about": null,