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) {
2727 program
2828 . command ( "dev" )
2929 . 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" )
3131 . option (
3232 "-p, --project-ref <project ref>" ,
3333 "The project ref. Required if there is no config file."
@@ -38,7 +38,7 @@ export function configureDevCommand(program: Command) {
3838 )
3939 . option ( "--debug-otel" , "Enable OpenTelemetry debugging" )
4040 . option ( "--skip-update-check" , "Skip checking for @trigger.dev package updates" )
41- ) . action ( async ( _ , options ) => {
41+ ) . action ( async ( options ) => {
4242 wrapCommandAction ( "dev" , DevCommandOptions , options , async ( opts ) => {
4343 await devCommand ( opts ) ;
4444 } ) ;
You can’t perform that action at this time.
0 commit comments