Skip to content

Commit 7122e6e

Browse files
committed
chore: various package upgrades
1 parent bffad3d commit 7122e6e

File tree

5 files changed

+11763
-8268
lines changed

5 files changed

+11763
-8268
lines changed

__tests__/main.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ test('test runs', () => {
1515
try {
1616
console.log(cp.execSync(`node ${ip}`, options).toString());
1717
} catch (e) {
18-
console.log(e.stdout.toString());
18+
const error = e as Error & {stdout: Buffer | string};
19+
console.log(error.stdout.toString());
1920
throw e;
2021
}
2122
});

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)