Skip to content

Commit 478e9a5

Browse files
fix(local): rename subcommand 'server' to 'serve'
1 parent 2812025 commit 478e9a5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/commands/local/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ import { serverCommand } from "./server.js";
44

55
export const localRoute = buildRouteMap({
66
routes: {
7-
server: serverCommand,
7+
serve: serverCommand,
88
run: runCommand,
99
},
10-
defaultCommand: "server",
10+
defaultCommand: "serve",
1111
docs: {
1212
brief: "Run a local Spotlight server for development",
1313
fullDescription:
1414
"Run a local Spotlight-compatible server to capture Sentry SDK\n" +
1515
"events from your dev stack.\n\n" +
1616
"Commands:\n" +
17-
" server Start the server and tail events (default)\n" +
17+
" serve Start the server and tail events (default)\n" +
1818
" run Run a command with SENTRY_SPOTLIGHT auto-injected",
1919
},
2020
});

0 commit comments

Comments
 (0)