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

@@ -6,20 +6,20 @@ import * as sinon from 'sinon';
import lodash from 'lodash';
import { v4 as generateUuid } from 'uuid';
import type { ReduxActions } from '../../../state/types.std.js';
import type { ReduxActions } from '../../../state/types.std.ts';
import {
actions,
getComposerStateForConversation,
getEmptyState,
reducer,
} from '../../../state/ducks/composer.preload.js';
import { noopAction } from '../../../state/ducks/noop.std.js';
import { reducer as rootReducer } from '../../../state/reducer.preload.js';
} from '../../../state/ducks/composer.preload.ts';
import { noopAction } from '../../../state/ducks/noop.std.ts';
import { reducer as rootReducer } from '../../../state/reducer.preload.ts';
import { IMAGE_JPEG } from '../../../types/MIME.std.js';
import type { AttachmentDraftType } from '../../../types/Attachment.std.js';
import { fakeDraftAttachment } from '../../../test-helpers/fakeAttachment.std.js';
import { NavTab } from '../../../types/Nav.std.js';
import { IMAGE_JPEG } from '../../../types/MIME.std.ts';
import type { AttachmentDraftType } from '../../../types/Attachment.std.ts';
import { fakeDraftAttachment } from '../../../test-helpers/fakeAttachment.std.ts';
import { NavTab } from '../../../types/Nav.std.ts';
const { noop } = lodash;