Skip to content

Commit

Permalink
fix(bundle): fixed imports with relative paths (#538)
Browse files Browse the repository at this point in the history
  • Loading branch information
whiteformed authored Dec 25, 2024
1 parent 172ca22 commit 747a3fd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/bundle/Editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@ import {EditorView as CMEditorView} from '@codemirror/view';
import {TextSelection} from 'prosemirror-state';
import {EditorView as PMEditorView} from 'prosemirror-view';

import {TransformFn} from 'src/core/markdown/ProseMirrorTransformer';

import {getAutocompleteConfig} from '../../src/markup/codemirror/autocomplete';
import type {CommonEditor, MarkupString} from '../common';
import {
type ActionStorage,
type EscapeConfig,
WysiwygEditor,
type WysiwygEditorOptions,
} from '../core';
import {TransformFn} from '../core/markdown/ProseMirrorTransformer';
import {ReactRenderStorage, type RenderStorage} from '../extensions';
import {i18n} from '../i18n/bundle';
import {logger} from '../logger';
import {createCodemirror} from '../markup';
import {getAutocompleteConfig} from '../markup/codemirror/autocomplete';
import {type CodeEditor, Editor as MarkupEditor} from '../markup/editor';
import {type Emitter, FileUploadHandler, type Receiver, SafeEventEmitter} from '../utils';
import type {DirectiveSyntaxContext} from '../utils/directive';
Expand Down

0 comments on commit 747a3fd

Please sign in to comment.