Skip to content

Commit cff4546

Browse files
committed
chore: Improve command description
1 parent c09ce40 commit cff4546

File tree

20 files changed

+32
-32
lines changed

20 files changed

+32
-32
lines changed

cmds/clean/autoloads.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['autoloads'];
21-
exports.desc = 'Remove generated autoloads file';
21+
exports.desc = 'Remove the generated autoloads file';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'clean/autoloads', argv.dest);

cmds/clean/dist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['dist [destination]', 'distribution [destination]'];
21-
exports.desc = 'Delete dist subdirectory';
21+
exports.desc = 'Delete the dist directory where the build output is stored';
2222
exports.builder = yargs => yargs
2323
.positional(
2424
'destination', {

cmds/clean/pkg-file.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['pkg-file'];
21-
exports.desc = 'Remove generated pkg-file';
21+
exports.desc = 'Remove the generated pkg-file';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'clean/pkg-file');

cmds/clean/workspace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['workspace', '.eask'];
21-
exports.desc = 'Clean up .eask directory';
21+
exports.desc = 'Clean up the .eask directory';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'clean/workspace');

cmds/core/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['list'];
21-
exports.desc = 'List packages';
21+
exports.desc = 'List all installed packages in dependency tree form';
2222
exports.builder = yargs => yargs
2323
.options({
2424
'depth': {

cmds/generate/autoloads.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['autoloads'];
21-
exports.desc = 'Generate autoloads file';
21+
exports.desc = 'Generate the autoloads file';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'generate/autoloads');

cmds/generate/ignore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['ignore <name>'];
21-
exports.desc = 'Generate ignore file using .gitignore templates';
21+
exports.desc = 'Generate an ignore file using .gitignore templates';
2222
exports.builder = yargs => yargs
2323
.positional(
2424
'<name>', {

cmds/generate/license.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['license <name>'];
21-
exports.desc = 'Generate LICENSE file';
21+
exports.desc = 'Generate the LICENSE file';
2222
exports.builder = yargs => yargs
2323
.positional(
2424
'<name>', {

cmds/generate/pkg-file.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['pkg-file', 'pkg', 'pkg-el'];
21-
exports.desc = 'Generate pkg file';
21+
exports.desc = 'Generate the pkg file';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'generate/pkg-file');

cmds/generate/recipe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['recipe [destination]'];
21-
exports.desc = 'Generate recipe file';
21+
exports.desc = 'Generate the recipe file';
2222
exports.builder = yargs => yargs
2323
.positional(
2424
'destination', {

0 commit comments

Comments
 (0)