We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2812025 commit 478e9a5Copy full SHA for 478e9a5
1 file changed
src/commands/local/index.ts
@@ -4,17 +4,17 @@ import { serverCommand } from "./server.js";
4
5
export const localRoute = buildRouteMap({
6
routes: {
7
- server: serverCommand,
+ serve: serverCommand,
8
run: runCommand,
9
},
10
- defaultCommand: "server",
+ defaultCommand: "serve",
11
docs: {
12
brief: "Run a local Spotlight server for development",
13
fullDescription:
14
"Run a local Spotlight-compatible server to capture Sentry SDK\n" +
15
"events from your dev stack.\n\n" +
16
"Commands:\n" +
17
- " server Start the server and tail events (default)\n" +
+ " serve Start the server and tail events (default)\n" +
18
" run Run a command with SENTRY_SPOTLIGHT auto-injected",
19
20
});
0 commit comments