File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/cli-v3/src/commands Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export function configureDevCommand(program: Command) {
27
27
program
28
28
. command ( "dev" )
29
29
. description ( "Run your Trigger.dev tasks locally" )
30
- . option ( "-c, --config <config file>" , "The name of the config file, found at [path]. " )
30
+ . option ( "-c, --config <config file>" , "The name of the config file" )
31
31
. option (
32
32
"-p, --project-ref <project ref>" ,
33
33
"The project ref. Required if there is no config file."
@@ -38,7 +38,7 @@ export function configureDevCommand(program: Command) {
38
38
)
39
39
. option ( "--debug-otel" , "Enable OpenTelemetry debugging" )
40
40
. option ( "--skip-update-check" , "Skip checking for @trigger.dev package updates" )
41
- ) . action ( async ( _ , options ) => {
41
+ ) . action ( async ( options ) => {
42
42
wrapCommandAction ( "dev" , DevCommandOptions , options , async ( opts ) => {
43
43
await devCommand ( opts ) ;
44
44
} ) ;
You can’t perform that action at this time.
0 commit comments