mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-25 02:48:23 +01:00
Bundle everything with rolldown
This commit is contained in:
@@ -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');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user