Skip to content

Commit

Permalink
Merge pull request #11 from mention-me/chore/unsilence-build-output
Browse files Browse the repository at this point in the history
Pipe output of build step into stream
  • Loading branch information
ryanmab authored Oct 11, 2024
2 parents 6d287c1 + 91336af commit ad62fc1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/utils/build/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ export async function build(

await exec.exec(`${executable} connector build`, [], {
cwd: path,
silent: true,

// We want to see the output of the build command during the build process.
silent: false,
});
} catch (error) {
throw new Error(`Unable to run build command. Error was: ${error}`);
Expand Down

0 comments on commit ad62fc1

Please sign in to comment.