Skip to content

Commit

Permalink
fix: incorrect type import
Browse files Browse the repository at this point in the history
  • Loading branch information
petyosi committed May 20, 2024
1 parent 4743184 commit 7430f88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
- name: Install dependencies
run: npm install --legacy-peer-deps

- name: Lint
run: npm run lint

- name: Typecheck
run: npm run typecheck

- name: Test
run: npm run test

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ import { CodeBlockEditorDescriptor } from '../codeblock'
import { comment, commentFromMarkdown } from '../../mdastUtilHtmlComment'
import { lexicalTheme } from '../../styles/lexicalTheme'
import { FORMAT } from '../../FormatConstants'
import { IconKey } from '../../IconKey'
import { IconKey } from '../../defaultSvgIcons'
export * from './MdastHTMLNode'
export * from './GenericHTMLNode'

Expand Down

0 comments on commit 7430f88

Please sign in to comment.