File tree Expand file tree Collapse file tree 12 files changed +14
-14
lines changed
Expand file tree Collapse file tree 12 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'install-vc [specs..]' ] ;
21- exports . desc = 'Install packages directly from the version control' ;
21+ exports . desc = 'Fetch and install packages directly via version control' ;
2222exports . builder = yargs => yargs
2323 . positional (
2424 '[specs..]' , {
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'install [names..]' ] ;
21- exports . desc = 'Install packages' ;
21+ exports . desc = 'Install packages from archives or install from the workspace ' ;
2222exports . builder = yargs => yargs
2323 . positional (
2424 '[names..]' , {
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'keywords' ] ;
21- exports . desc = 'List available keywords that can be used in the header section' ;
21+ exports . desc = 'Display the available keywords for use in the header section' ;
2222
2323exports . handler = async ( argv ) => {
2424 await UTIL . e_call ( argv , 'core/keywords' ) ;
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'package-directory' ] ;
21- exports . desc = 'Print path to package directory' ;
21+ exports . desc = 'Print the path to package directory' ;
2222
2323exports . handler = async ( argv ) => {
2424 await UTIL . e_call ( argv , 'core/package-directory' ) ;
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'refresh' ] ;
21- exports . desc = 'Download package archives' ;
21+ exports . desc = 'Download descriptions of all configured package archives' ;
2222
2323exports . handler = async ( argv ) => {
2424 await UTIL . e_call ( argv , 'core/refresh' ) ;
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'reinstall [names..]' ] ;
21- exports . desc = 'Reinstall packages' ;
21+ exports . desc = 'Reinstall packages from archives ' ;
2222exports . builder = yargs => yargs
2323 . positional (
2424 '[names..]' , {
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'repl' , 'ielm' ] ;
21- exports . desc = UTIL . hide_cmd ( 'Start the Elisp REPL' ) ;
21+ exports . desc = UTIL . hide_cmd ( 'Start an Elisp REPL' ) ;
2222
2323exports . handler = async ( argv ) => {
2424 await UTIL . e_call ( argv , 'core/repl' ) ;
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'search [queries..]' ] ;
21- exports . desc = 'Search packages' ;
21+ exports . desc = 'Search packages from archives ' ;
2222exports . builder = yargs => yargs
2323 . positional (
2424 '[queries..]' , {
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'source <type>' ] ;
21- exports . desc = UTIL . hide_cmd ( 'Add/Remove source from DSL ' ) ;
21+ exports . desc = UTIL . hide_cmd ( 'Manage sources ' ) ;
2222exports . builder = function ( yargs ) {
2323 yargs . usage ( `${ exports . desc }
2424
@@ -30,8 +30,8 @@ Usage: eask source <type> [options..]`)
3030 if ( UTIL . cmd_count ( ) == 1 ) {
3131 yargs . positional (
3232 '<type>' , {
33- description : 'type of the control' ,
34- } ) ;
33+ description : 'type of the control' ,
34+ } ) ;
3535 }
3636}
3737
Original file line number Diff line number Diff line change 1818"use strict" ;
1919
2020exports . command = [ 'status' ] ;
21- exports . desc = 'Display the state of the workspace' ;
21+ exports . desc = 'Show the workspace status ' ;
2222
2323exports . handler = async ( argv ) => {
2424 await UTIL . e_call ( argv , 'core/status' ) ;
You can’t perform that action at this time.
0 commit comments