File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
packages/cloudflare/src/cli Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ import { addPreviewCommand } from "./commands/preview.js";
99import { addUploadCommand } from "./commands/upload.js" ;
1010
1111export function runCommand ( ) {
12- let y = yargs ( process . argv . slice ( 2 ) )
12+ const y = yargs ( process . argv . slice ( 2 ) )
1313 . scriptName ( "opennextjs-cloudflare" )
1414 . parserConfiguration ( { "unknown-options-as-args" : true } ) ;
1515
16- y = addBuildCommand ( y ) ;
17- y = addPreviewCommand ( y ) ;
18- y = addDeployCommand ( y ) ;
19- y = addUploadCommand ( y ) ;
20- y = addPopulateCacheCommand ( y ) ;
16+ addBuildCommand ( y ) ;
17+ addPreviewCommand ( y ) ;
18+ addDeployCommand ( y ) ;
19+ addUploadCommand ( y ) ;
20+ addPopulateCacheCommand ( y ) ;
2121
2222 return y . demandCommand ( 1 , 1 ) . parse ( ) ;
2323}
You can’t perform that action at this time.
0 commit comments