Skip to content

Commit 0b4c11e

Browse files
committed
chore: formatting
1 parent e7c375b commit 0b4c11e

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/release-doctor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ jobs:
1919
bash ./bin/check-release-environment
2020
env:
2121
NPM_TOKEN: ${{ secrets.LITHIC_NPM_TOKEN || secrets.NPM_TOKEN }}
22-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ switch (event.event_type) {
184184

185185
```ts
186186
// Verify signature without parsing the event
187-
lithic.webhooks.verifySignature(body, headers)
187+
lithic.webhooks.verifySignature(body, headers);
188188

189189
// Parse only - skips signature verification
190190
const event = lithic.webhooks.parseUnsafe(body);

bin/cli

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,21 @@ const commands = {
88
fn: () => {
99
const result = spawnSync(
1010
'npx',
11-
['-y', 'https://github.com/stainless-api/migrate-ts/releases/download/0.0.2/stainless-api-migrate-0.0.2-6.tgz', '--migrationConfig', require.resolve('./migration-config.json'), ...process.argv.slice(3)],
11+
[
12+
'-y',
13+
'https://github.com/stainless-api/migrate-ts/releases/download/0.0.2/stainless-api-migrate-0.0.2-6.tgz',
14+
'--migrationConfig',
15+
require.resolve('./migration-config.json'),
16+
...process.argv.slice(3),
17+
],
1218
{ stdio: 'inherit' },
1319
);
1420
if (result.status !== 0) {
1521
process.exit(result.status);
1622
}
17-
}
18-
}
19-
}
23+
},
24+
},
25+
};
2026

2127
function exitWithHelp() {
2228
console.log(`Usage: lithic <subcommand>`);

0 commit comments

Comments
 (0)