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

@@ -11,11 +11,7 @@ import {
PublicKey,
} from '@signalapp/libsignal-client';
import {
OutgoingIdentityKeyError,
UnregisteredUserError,
HTTPError,
} from './Errors.js';
import { OutgoingIdentityKeyError, UnregisteredUserError } from './Errors.js';
import { Sessions, IdentityKeys } from '../LibSignalStores.js';
import { Address } from '../types/Address.js';
import { QualifiedAddress } from '../types/QualifiedAddress.js';
@@ -24,6 +20,7 @@ import type { ServerKeysType, WebAPIType } from './WebAPI.js';
import { createLogger } from '../logging/log.js';
import { isRecord } from '../util/isRecord.js';
import type { GroupSendToken } from '../types/GroupSendEndorsements.js';
import { HTTPError } from '../types/HTTPError.js';
import { onFailedToSendWithEndorsements } from '../util/groupSendEndorsements.js';
const log = createLogger('getKeysForServiceId');