Skip to content

Commit

Permalink
chore: Emoji space in help description (#1964)
Browse files Browse the repository at this point in the history
Added a space between the Emoji and description for the secret:bulk command.
  • Loading branch information
JacobMGEvans committed Sep 30, 2022
1 parent 15ca338 commit 1f50578
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changeset/strange-clouds-judge.md
@@ -0,0 +1,6 @@
---
"wrangler": patch
---

chore: Emoji space in help description
Added a space between the Emoji and description for the secret:bulk command.
4 changes: 2 additions & 2 deletions packages/wrangler/src/__tests__/index.test.ts
Expand Up @@ -36,7 +36,7 @@ describe("wrangler", () => {
wrangler publish [script] 🆙 Publish your Worker to Cloudflare.
wrangler tail [worker] 🦚 Starts a log tailing session for a published Worker.
wrangler secret 🤫 Generate a secret that can be referenced in a Worker
wrangler secret:bulk <json> 🗄️ Bulk upload secrets for a Worker
wrangler secret:bulk <json> 🗄️ Bulk upload secrets for a Worker
wrangler kv:namespace 🗂️ Interact with your Workers KV Namespaces
wrangler kv:key 🔑 Individually manage Workers KV key-value pairs
wrangler kv:bulk 💪 Interact with multiple Workers KV key-value pairs at once
Expand Down Expand Up @@ -77,7 +77,7 @@ describe("wrangler", () => {
wrangler publish [script] 🆙 Publish your Worker to Cloudflare.
wrangler tail [worker] 🦚 Starts a log tailing session for a published Worker.
wrangler secret 🤫 Generate a secret that can be referenced in a Worker
wrangler secret:bulk <json> 🗄️ Bulk upload secrets for a Worker
wrangler secret:bulk <json> 🗄️ Bulk upload secrets for a Worker
wrangler kv:namespace 🗂️ Interact with your Workers KV Namespaces
wrangler kv:key 🔑 Individually manage Workers KV key-value pairs
wrangler kv:bulk 💪 Interact with multiple Workers KV key-value pairs at once
Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/src/index.tsx
Expand Up @@ -1172,7 +1172,7 @@ function createCLIParser(argv: string[]) {

wrangler.command(
"secret:bulk <json>",
"🗄️ Bulk upload secrets for a Worker",
"🗄️ Bulk upload secrets for a Worker",
(yargs) => {
return yargs
.positional("json", {
Expand Down

0 comments on commit 1f50578

Please sign in to comment.