Skip to content

Commit 7dec55f

Browse files
wrap package names in back ticks to get around cspell
1 parent 7a83283 commit 7dec55f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/release-tasks.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import { BuildOptions } from './utils/options';
66
import { isPrereleaseVersion, isValidVersionInput, SEMVER_INCREMENTS, updateChangeLog } from './utils/release-utils';
77

88
/**
9-
* We have to wrap execa in a promise to ensure it works with Listr. Listr uses rxjs under the hood which
10-
* seems to have issues with execa's `ResultPromise` as it never resolves a task.
9+
* We have to wrap `execa` in a promise to ensure it works with `Listr`. `Listr` uses rxjs under the hood which
10+
* seems to have issues with `execa`'s `ResultPromise` as it never resolves a task.
1111
* @param command command to run
1212
* @param args arguments to pass to the command
13-
* @param options execa options
13+
* @param options `execa` options
1414
* @returns a promise that resolves with the stdout and stderr of the command
1515
*/
1616
async function execa(command: string, args: string[], options?: any) {

0 commit comments

Comments
 (0)