@@ -54,7 +54,10 @@ devbox
5454 . option ( "-n, --name <name>" , "Devbox name" )
5555 . option ( "-t, --template <template>" , "Template to use" )
5656 . option ( "--blueprint <blueprint>" , "Blueprint ID to use" )
57- . option ( "--resources <size>" , "Resource size (X_SMALL, SMALL, MEDIUM, LARGE, X_LARGE, XX_LARGE)" )
57+ . option (
58+ "--resources <size>" ,
59+ "Resource size (X_SMALL, SMALL, MEDIUM, LARGE, X_LARGE, XX_LARGE)" ,
60+ )
5861 . option ( "--architecture <arch>" , "Architecture (arm64, x86_64)" )
5962 . option ( "--entrypoint <command>" , "Entrypoint command to run" )
6063 . option ( "--available-ports <ports...>" , "Available ports" )
@@ -171,8 +174,16 @@ devbox
171174 . description ( "SSH into a devbox" )
172175 . option ( "--config-only" , "Print SSH config only" )
173176 . option ( "--no-wait" , "Do not wait for devbox to be ready" )
174- . option ( "--timeout <seconds>" , "Timeout in seconds to wait for readiness" , "180" )
175- . option ( "--poll-interval <seconds>" , "Polling interval in seconds while waiting" , "3" )
177+ . option (
178+ "--timeout <seconds>" ,
179+ "Timeout in seconds to wait for readiness" ,
180+ "180" ,
181+ )
182+ . option (
183+ "--poll-interval <seconds>" ,
184+ "Polling interval in seconds while waiting" ,
185+ "3" ,
186+ )
176187 . option (
177188 "-o, --output [format]" ,
178189 "Output format: text|json|yaml (default: interactive)" ,
@@ -252,7 +263,10 @@ devbox
252263 . command ( "download <id>" )
253264 . description ( "Download a file from a devbox" )
254265 . option ( "--file-path <path>" , "Path to the file in the devbox" )
255- . option ( "--output-path <path>" , "Local path where to save the downloaded file" )
266+ . option (
267+ "--output-path <path>" ,
268+ "Local path where to save the downloaded file" ,
269+ )
256270 . option (
257271 "-o, --output-format [format]" ,
258272 "Output format: text|json|yaml (default: interactive)" ,
@@ -394,7 +408,10 @@ blueprint
394408 . option ( "--dockerfile <content>" , "Dockerfile contents" )
395409 . option ( "--dockerfile-path <path>" , "Dockerfile path" )
396410 . option ( "--system-setup-commands <commands...>" , "System setup commands" )
397- . option ( "--resources <size>" , "Resource size (X_SMALL, SMALL, MEDIUM, LARGE, X_LARGE, XX_LARGE)" )
411+ . option (
412+ "--resources <size>" ,
413+ "Resource size (X_SMALL, SMALL, MEDIUM, LARGE, X_LARGE, XX_LARGE)" ,
414+ )
398415 . option ( "--architecture <arch>" , "Architecture (arm64, x86_64)" )
399416 . option ( "--available-ports <ports...>" , "Available ports" )
400417 . option ( "--root" , "Run as root" )
@@ -413,7 +430,10 @@ blueprint
413430 . description ( "Preview blueprint before creation" )
414431 . option ( "--dockerfile <content>" , "Dockerfile contents" )
415432 . option ( "--system-setup-commands <commands...>" , "System setup commands" )
416- . option ( "--resources <size>" , "Resource size (X_SMALL, SMALL, MEDIUM, LARGE, X_LARGE, XX_LARGE)" )
433+ . option (
434+ "--resources <size>" ,
435+ "Resource size (X_SMALL, SMALL, MEDIUM, LARGE, X_LARGE, XX_LARGE)" ,
436+ )
417437 . option ( "--architecture <arch>" , "Architecture (arm64, x86_64)" )
418438 . option ( "--available-ports <ports...>" , "Available ports" )
419439 . option ( "--root" , "Run as root" )
@@ -423,7 +443,9 @@ blueprint
423443 "Output format: text|json|yaml (default: interactive)" ,
424444 )
425445 . action ( async ( name , options ) => {
426- const { previewBlueprint } = await import ( "./commands/blueprint/preview.js" ) ;
446+ const { previewBlueprint } = await import (
447+ "./commands/blueprint/preview.js"
448+ ) ;
427449 await previewBlueprint ( { name, ...options } ) ;
428450 } ) ;
429451
@@ -499,7 +521,11 @@ object
499521 . command ( "download <id> <path>" )
500522 . description ( "Download object to local file" )
501523 . option ( "--extract" , "Extract downloaded archive after download" )
502- . option ( "--duration-seconds <seconds>" , "Duration in seconds for the presigned URL validity" , "3600" )
524+ . option (
525+ "--duration-seconds <seconds>" ,
526+ "Duration in seconds for the presigned URL validity" ,
527+ "3600" ,
528+ )
503529 . option (
504530 "-o, --output [format]" ,
505531 "Output format: text|json|yaml (default: interactive)" ,
@@ -513,7 +539,10 @@ object
513539 . command ( "upload <path>" )
514540 . description ( "Upload a file as an object" )
515541 . option ( "--name <name>" , "Object name (required)" )
516- . option ( "--content-type <type>" , "Content type: unspecified|text|binary|gzip|tar|tgz" )
542+ . option (
543+ "--content-type <type>" ,
544+ "Content type: unspecified|text|binary|gzip|tar|tgz" ,
545+ )
517546 . option ( "--public" , "Make object publicly accessible" )
518547 . option (
519548 "-o, --output [format]" ,
0 commit comments