Skip to content

Commit df4bf75

Browse files
committed
chore: internal - format
1 parent 5025f8b commit df4bf75

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-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.TOGETHER_NPM_TOKEN || secrets.NPM_TOKEN }}
22-

bin/cli

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,26 @@ const { spawnSync } = require('child_process');
44

55
const commands = {
66
migrate: {
7-
description: 'Run migrations to update your code using together-ai@0.20.0 to be compatible with together-ai@0.21.0',
7+
description:
8+
'Run migrations to update your code using together-ai@0.20.0 to be compatible with together-ai@0.21.0',
89
fn: () => {
910
const result = spawnSync(
1011
'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)],
12+
[
13+
'-y',
14+
'https://github.com/stainless-api/migrate-ts/releases/download/0.0.2/stainless-api-migrate-0.0.2-6.tgz',
15+
'--migrationConfig',
16+
require.resolve('./migration-config.json'),
17+
...process.argv.slice(3),
18+
],
1219
{ stdio: 'inherit' },
1320
);
1421
if (result.status !== 0) {
1522
process.exit(result.status);
1623
}
17-
}
18-
}
19-
}
24+
},
25+
},
26+
};
2027

2128
function exitWithHelp() {
2229
console.log(`Usage: together-ai <subcommand>`);

0 commit comments

Comments
 (0)