Skip to content

Commit

Permalink
refactor: fix return type in development's runCommand function
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmurdoch committed Mar 24, 2024
1 parent 81176b0 commit 463ac78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion development/lib/run-command.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const spawn = require('cross-spawn');
*
* @param {string} command - The command to run
* @param {Array<string>} [args] - The arguments to pass to the command
* @returns {Array<string>} Lines of output received via STDOUT
* @returns {Promise<Array<string>>} Lines of output received via STDOUT
*/
async function runCommand(command, args) {
const output = [];
Expand Down

0 comments on commit 463ac78

Please sign in to comment.