Faster incremental builds

This commit is contained in:
Fedor Indutny
2025-10-06 12:23:41 -07:00
committed by GitHub
parent 7ab12f3d7a
commit 780f39c285
130 changed files with 1479 additions and 1450 deletions

View File

@@ -29,7 +29,7 @@ import type {
ProcessedGiftBadge,
ProcessedStoryContext,
} from './Types.d.ts';
import { GiftBadgeStates } from '../components/conversation/Message.js';
import { GiftBadgeStates } from '../types/GiftBadgeStates.js';
import { APPLICATION_OCTET_STREAM, stringToMIMEType } from '../types/MIME.js';
import { SECOND, DurationInSeconds } from '../util/durations/index.js';
import type { AnyPaymentEvent } from '../types/Payment.js';
@@ -37,7 +37,7 @@ import { PaymentEventKind } from '../types/Payment.js';
import { filterAndClean } from '../types/BodyRange.js';
import { bytesToUuid } from '../util/uuidToBytes.js';
import { createName } from '../util/attachmentPath.js';
import { partitionBodyAndNormalAttachments } from '../types/Attachment.js';
import { partitionBodyAndNormalAttachments } from '../util/Attachment.js';
import { isNotNil } from '../util/isNotNil.js';
const { isNumber } = lodash;