We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51946ea commit 41a4560Copy full SHA for 41a4560
packages/build/src/packaging/package/helpers.ts
@@ -13,7 +13,9 @@ export async function execFile(
13
): Promise<ReturnType<typeof execFileWithoutLogging>> {
14
const joinedCommand = [args[0], ...(args[1] ?? [])].join(' ');
15
console.info(
16
- 'Running "' + joinedCommand + '" in ' + args[2]?.cwd ?? process.cwd()
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
17
+ // @ts-ignore TS2869 Right operand of ?? is unreachable because the left operand is never nullish.
18
+ `Running "${joinedCommand}" in ${args[2]?.cwd ?? process.cwd()}`
19
);
20
const result = await execFileWithoutLogging(...args);
21
console.info('"' + joinedCommand + '" resulted in:', {
0 commit comments