diff --git a/README.md b/README.md index 3ebec33e..05688f2a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ > [!NOTE] -> This tool is only used for managing [Deno Deploy Classic](https://docs.deno.com/deploy/classic/) organizations and their projects. New Deno Deploy organizations use the `deno deploy` command built into the Deno Runtime. Learn more about the new `deno deploy` command in the [reference docs](https://docs.deno.com/runtime/reference/cli/deploy/) +> This tool is only used for managing +> [Deno Deploy Classic](https://docs.deno.com/deploy/classic/) organizations and +> their projects. New Deno Deploy organizations use the `deno deploy` command +> built into the Deno Runtime. Learn more about the new `deno deploy` command in +> the [reference docs](https://docs.deno.com/runtime/reference/cli/deploy/) # deployctl diff --git a/examples/fresh/static/logo.svg b/examples/fresh/static/logo.svg index ef2fbe4c..5b99e0b1 100644 --- a/examples/fresh/static/logo.svg +++ b/examples/fresh/static/logo.svg @@ -1,6 +1,19 @@ - - - - - \ No newline at end of file + + + + + diff --git a/src/config_file.ts b/src/config_file.ts index 34b0392c..289e3728 100644 --- a/src/config_file.ts +++ b/src/config_file.ts @@ -73,7 +73,7 @@ class ConfigFile { /** Returns all the differences between this `ConfigArgs` and the one provided as argument. * * The comparison is performed against the JSON output of each config. The "other" args are - * sematically considered additions in the return value. Ignores any property in `args` not meant + * semantically considered additions in the return value. Ignores any property in `args` not meant * to be persisted. */ diff(args: ConfigArgs): Change[] { diff --git a/src/subcommands/deployments.ts b/src/subcommands/deployments.ts index d77ea0dd..2260d124 100644 --- a/src/subcommands/deployments.ts +++ b/src/subcommands/deployments.ts @@ -326,7 +326,7 @@ async function showDeployment(args: Args): Promise { } let organization = project.organization; if (!organization.name && !organization.members) { - // project.organization does not incude members array, and we need it for naming personal orgs + // project.organization does not include members array, and we need it for naming personal orgs organization = await api.getOrganizationById(organization.id); } spinner.succeed( diff --git a/src/subcommands/logs.ts b/src/subcommands/logs.ts index b6699939..bd5bf8d4 100644 --- a/src/subcommands/logs.ts +++ b/src/subcommands/logs.ts @@ -41,10 +41,10 @@ OPTIONS: --grep= Filter logs by a word Multiple words can be specified for AND search. For example, "--grep=foo --grep=bar" will match logs containing both "foo" and "bar" --levels= Filter logs by log levels (defaults to all log levels) - Mutliple levels can be specified, e.g. --levels=info,error + Multiple levels can be specified, e.g. --levels=info,error --regions= Filter logs by regions (defaults to all regions) Multiple regions can be specified, e.g. --regions=region1,region2 - --limit= Limit the number of logs to return (defualts to 100) + --limit= Limit the number of logs to return (defaults to 100) This flag is effective only when --since and/or --until is specified `; diff --git a/src/subcommands/top.ts b/src/subcommands/top.ts index ffe47786..f285ea93 100644 --- a/src/subcommands/top.ts +++ b/src/subcommands/top.ts @@ -24,7 +24,7 @@ Definition of the table columns: CPU/req CPU time per request, in milliseconds. RSS/5min Max RSS used by the project during the last 5 minutes, in MB. Ingress/min Data received by the project per minute, in KB. - Egress/min Data outputed by the project per minute, in KB. + Egress/min Data outputted by the project per minute, in KB. KVr/min KV reads performed by the project per minute. KVw/min KV writes performed by the project per minute. QSenq/min Queues enqueues performed by the project per minute. diff --git a/src/utils/access_token.ts b/src/utils/access_token.ts index 8b5c585e..af8e3b91 100644 --- a/src/utils/access_token.ts +++ b/src/utils/access_token.ts @@ -90,10 +90,10 @@ async function provision(): Promise { wait("").start().warn(warn); let error = new TextDecoder().decode((await open.output()).stderr); const errIndent = 2; - const elipsis = "..."; + const ellipsis = "..."; const maxErrLength = warn.length - errIndent; if (error.length > maxErrLength) { - error = error.slice(0, maxErrLength - elipsis.length) + elipsis; + error = error.slice(0, maxErrLength - ellipsis.length) + ellipsis; } // resulting indentation is 1 less than configured wait({ text: "", indent: errIndent + 1 }).start().fail(error); diff --git a/tests/config_file_test/config_file_test.ts b/tests/config_file_test/config_file_test.ts index c890b4a2..fc3e21a3 100644 --- a/tests/config_file_test/config_file_test.ts +++ b/tests/config_file_test/config_file_test.ts @@ -32,7 +32,7 @@ Deno.test("ConfigFile.diff returns array with additions and removals", async () ]); }); -Deno.test("ConfigFile.diff reports inculde and exclude changes when one of the entries changed", async () => { +Deno.test("ConfigFile.diff reports include and exclude changes when one of the entries changed", async () => { const config = await configFile.read( fromFileUrl(new URL(import.meta.resolve("./config.json"))), );