We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bf6dab commit f7a2892Copy full SHA for f7a2892
src/build-program.ts
@@ -37,7 +37,8 @@ function actionHandler(this: Command) {
37
throw new FunctionReferenceError(functionName, moduleName);
38
}
39
40
- process.stdout.write(String(entryRef()));
+ const output = String(entryRef());
41
+ process.stdout.write(output + (process.stdout.isTTY ? '\n' : ''));
42
43
44
export function buildProgram(): Command {
0 commit comments