@@ -61,57 +61,47 @@ function getCommands() {
6161 // deno-lint-ignore no-explicit-any
6262 const commands : Command < any > [ ] = [ ] ;
6363 commands . push (
64- packageCommand ( configure )
65- . name ( "configure" )
64+ packageCommand ( configure , "configure" )
6665 . description (
6766 "Configures this machine for running developer version of Quarto" ,
6867 ) ,
6968 ) ;
7069 commands . push (
71- packageCommand ( updateHtmlDependencies )
72- . name ( "update-html-dependencies" )
70+ packageCommand ( updateHtmlDependencies , "update-html-dependencies" )
7371 . description (
7472 "Updates Bootstrap, themes, and JS/CSS dependencies based upon the version in configuration" ,
7573 ) ,
7674 ) ;
7775 commands . push (
78- packageCommand ( archiveBinaryDependencies )
79- . name ( "archive-bin-deps" )
76+ packageCommand ( archiveBinaryDependencies , "archive-bin-deps" )
8077 . description ( "Downloads and archives our binary dependencies." ) ,
8178 ) ;
8279 commands . push (
83- packageCommand ( checkBinaryDependencies )
84- . name ( "check-bin-deps" )
80+ packageCommand ( checkBinaryDependencies , "check-bin-deps" )
8581 . description ( "Checks the paths and URLs of our binary dependencies." ) ,
8682 ) ;
8783 commands . push (
88- packageCommand ( prepareDist )
89- . name ( "prepare-dist" )
84+ packageCommand ( prepareDist , "prepare-dist" )
9085 . description ( "Prepares the distribution directory for packaging." ) ,
9186 ) ;
9287 commands . push (
93- packageCommand ( validateBundle )
94- . name ( "validate-bundle" )
88+ packageCommand ( validateBundle , "validate-bundle" )
9589 . description ( "Validate a JS bundle built using prepare-dist" )
9690 ) ;
9791 commands . push (
98- packageCommand ( makeInstallerMac )
99- . name ( "make-installer-mac" )
92+ packageCommand ( makeInstallerMac , "make-installer-mac" )
10093 . description ( "Builds Mac OS installer" ) ,
10194 ) ;
10295 commands . push (
103- packageCommand ( makeInstallerDeb )
104- . name ( "make-installer-deb" )
96+ packageCommand ( makeInstallerDeb , "make-installer-deb" )
10597 . description ( "Builds Linux deb installer" ) ,
10698 ) ;
10799 commands . push (
108- packageCommand ( makeInstallerWindows )
109- . name ( "make-installer-win" )
100+ packageCommand ( makeInstallerWindows , "make-installer-win" )
110101 . description ( "Builds Windows installer" ) ,
111102 ) ;
112103 commands . push (
113- packageCommand ( makeInstallerExternal )
114- . name ( "make-installer-dir" )
104+ packageCommand ( makeInstallerExternal , "make-installer-dir" )
115105 . description ( "Copies Quarto-only files, omitting dependencies, to specified location (for use in third party packaging)" ) ,
116106 ) ;
117107 commands . push (
0 commit comments