From 7430f8834e9a856fe8a28e087e6e72cb7d12cc5e Mon Sep 17 00:00:00 2001 From: Petyo Ivanov Date: Mon, 20 May 2024 14:40:11 +0300 Subject: [PATCH] fix: incorrect type import --- .github/workflows/release.yml | 6 ++++++ src/plugins/core/index.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8e02fe76..1dd46e1a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/src/plugins/core/index.ts b/src/plugins/core/index.ts index 42013564..7e2ae5cf 100644 --- a/src/plugins/core/index.ts +++ b/src/plugins/core/index.ts @@ -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'