Bundle everything with rolldown

This commit is contained in:
Fedor Indutny
2026-03-30 12:42:37 -07:00
committed by GitHub
parent 8c06ad52ab
commit a27f0ad3e1
2317 changed files with 22723 additions and 63514 deletions

View File

@@ -1,25 +1,25 @@
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { createLogger } from '../logging/log.std.js';
import { SignalService as Proto } from '../protobuf/index.std.js';
import { DurationInSeconds } from '../util/durations/index.std.js';
import { DelimitedStream } from '../util/DelimitedStream.node.js';
import { createLogger } from '../logging/log.std.ts';
import { SignalService as Proto } from '../protobuf/index.std.ts';
import { DurationInSeconds } from '../util/durations/index.std.ts';
import { DelimitedStream } from '../util/DelimitedStream.node.ts';
import {
getAbsoluteAttachmentPath,
writeNewAttachmentData,
} from '../util/migrations.preload.js';
import { strictAssert } from '../util/assert.std.js';
import type { ContactAvatarType } from '../types/Avatar.std.js';
import type { AttachmentType } from '../types/Attachment.std.js';
import type { AciString } from '../types/ServiceId.std.js';
import { computeHash } from '../Crypto.node.js';
import { fromAciUuidBytesOrString } from '../util/ServiceId.node.js';
import * as Bytes from '../Bytes.std.js';
import { decryptAttachmentV2ToSink } from '../AttachmentCrypto.node.js';
} from '../util/migrations.preload.ts';
import { strictAssert } from '../util/assert.std.ts';
import type { ContactAvatarType } from '../types/Avatar.std.ts';
import type { AttachmentType } from '../types/Attachment.std.ts';
import type { AciString } from '../types/ServiceId.std.ts';
import { computeHash } from '../Crypto.node.ts';
import { fromAciUuidBytesOrString } from '../util/ServiceId.node.ts';
import * as Bytes from '../Bytes.std.ts';
import { decryptAttachmentV2ToSink } from '../AttachmentCrypto.node.ts';
import Avatar = Proto.ContactDetails.Avatar.Params;
import { stringToMIMEType } from '../types/MIME.std.js';
import { stringToMIMEType } from '../types/MIME.std.ts';
const log = createLogger('ContactsParser');