Skip to content

Commit 6f9e2f7

Browse files
rustyconoverclaude
andcommitted
fix(lint): sort flechette imports to unblock CI (release 0.7.3)
Biome organizeImports/format errors on src/arrow/impl-flechette/{index, normalize-type}.ts have been failing the lint step — and thus ci.yml — on every commit since the 0.7.2 release. Apply the auto-fix and rebuild dist so main goes green and 0.7.3 can be published. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 1f3323e commit 6f9e2f7

8 files changed

Lines changed: 32 additions & 23 deletions

File tree

bun.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/arrow/impl-flechette/index.d.ts.map

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

dist/arrow/impl-flechette/normalize-type.d.ts.map

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

dist/dispatch/describe.d.ts.map

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

dist/index.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3256,13 +3256,7 @@ async function buildDescribeBatch(protocolName, methods, serverId, protocolVersi
32563256
hasHeaders.push(hasHeader);
32573257
const headerIpc = method.headerSchema ? serializeSchema2(method.headerSchema) : null;
32583258
headerSchemas.push(headerIpc);
3259-
let isExchange;
3260-
if (method.exchangeFn)
3261-
isExchange = true;
3262-
else if (method.producerFn)
3263-
isExchange = false;
3264-
else
3265-
isExchange = null;
3259+
const isExchange = null;
32663260
isExchanges.push(isExchange);
32673261
hashRows.push({
32683262
name,
@@ -9569,4 +9563,4 @@ export {
95699563
ARROW_CONTENT_TYPE
95709564
};
95719565

9572-
//# debugId=577B8BC5B26DC1B764756E2164756E21
9566+
//# debugId=03000096478B827564756E2164756E21

0 commit comments

Comments
 (0)