Skip to content

Commit

Permalink
chore: various package upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisBrunner committed Aug 31, 2022
1 parent bffad3d commit 7122e6e
Show file tree
Hide file tree
Showing 5 changed files with 11,763 additions and 8,268 deletions.
3 changes: 2 additions & 1 deletion __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ test('test runs', () => {
try {
console.log(cp.execSync(`node ${ip}`, options).toString());
} catch (e) {
console.log(e.stdout.toString());
const error = e as Error & {stdout: Buffer | string};
console.log(error.stdout.toString());
throw e;
}
});
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit 7122e6e

Please sign in to comment.