Skip to content

Add missing dependency for types#1

Merged
wooorm merged 1 commit intomicromark:mainfrom
Methuselah96:fix-type-dependencies
Mar 24, 2022
Merged

Add missing dependency for types#1
wooorm merged 1 commit intomicromark:mainfrom
Methuselah96:fix-type-dependencies

Conversation

@Methuselah96
Copy link
Contributor

Initial checklist

  • I read the support docs
  • I read the contributing guide
  • I agree to follow the code of conduct
  • I searched issues and couldn’t find anything (or linked relevant results below)
  • If applicable, I’ve added docs and tests

Description of changes

Fix these build errors:

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/html.d.ts 6:36-58
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
    4 |  */
    5 | export function gfmFootnoteHtml(options?: Options | undefined): HtmlExtension
  > 6 | export type HtmlExtension = import('micromark-util-types').HtmlExtension
      |                                    ^^^^^^^^^^^^^^^^^^^^^^
    7 | export type CompileContext = import('micromark-util-types').CompileContext
    8 | export type Options = {
    9 |   /**

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/html.d.ts 7:37-59
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
     5 | export function gfmFootnoteHtml(options?: Options | undefined): HtmlExtension
     6 | export type HtmlExtension = import('micromark-util-types').HtmlExtension
  >  7 | export type CompileContext = import('micromark-util-types').CompileContext
       |                                     ^^^^^^^^^^^^^^^^^^^^^^
     8 | export type Options = {
     9 |   /**
    10 |    * Prefix to use before the `id` attribute to prevent it from *clobbering*.

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts 5:32-54
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
    3 |  */
    4 | export function gfmFootnote(): Extension
  > 5 | export type Extension = import('micromark-util-types').Extension
      |                                ^^^^^^^^^^^^^^^^^^^^^^
    6 | export type Resolver = import('micromark-util-types').Resolver
    7 | export type Token = import('micromark-util-types').Token
    8 | export type Tokenizer = import('micromark-util-types').Tokenizer

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts 6:31-53
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
    4 | export function gfmFootnote(): Extension
    5 | export type Extension = import('micromark-util-types').Extension
  > 6 | export type Resolver = import('micromark-util-types').Resolver
      |                               ^^^^^^^^^^^^^^^^^^^^^^
    7 | export type Token = import('micromark-util-types').Token
    8 | export type Tokenizer = import('micromark-util-types').Tokenizer
    9 | export type Exiter = import('micromark-util-types').Exiter

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts 7:28-50
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
     5 | export type Extension = import('micromark-util-types').Extension
     6 | export type Resolver = import('micromark-util-types').Resolver
  >  7 | export type Token = import('micromark-util-types').Token
       |                            ^^^^^^^^^^^^^^^^^^^^^^
     8 | export type Tokenizer = import('micromark-util-types').Tokenizer
     9 | export type Exiter = import('micromark-util-types').Exiter
    10 | export type State = import('micromark-util-types').State

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts 8:32-54
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
     6 | export type Resolver = import('micromark-util-types').Resolver
     7 | export type Token = import('micromark-util-types').Token
  >  8 | export type Tokenizer = import('micromark-util-types').Tokenizer
       |                                ^^^^^^^^^^^^^^^^^^^^^^
     9 | export type Exiter = import('micromark-util-types').Exiter
    10 | export type State = import('micromark-util-types').State
    11 | export type Event = import('micromark-util-types').Event

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts 9:29-51
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
     7 | export type Token = import('micromark-util-types').Token
     8 | export type Tokenizer = import('micromark-util-types').Tokenizer
  >  9 | export type Exiter = import('micromark-util-types').Exiter
       |                             ^^^^^^^^^^^^^^^^^^^^^^
    10 | export type State = import('micromark-util-types').State
    11 | export type Event = import('micromark-util-types').Event
    12 |

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts 10:28-50
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
     8 | export type Tokenizer = import('micromark-util-types').Tokenizer
     9 | export type Exiter = import('micromark-util-types').Exiter
  > 10 | export type State = import('micromark-util-types').State
       |                            ^^^^^^^^^^^^^^^^^^^^^^
    11 | export type Event = import('micromark-util-types').Event
    12 |

ERROR in ../../.yarn/cache/micromark-extension-gfm-footnote-npm-1.0.3-4f3ceb79de-81aaf12d23.zip/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts 11:28-50
TS2307: Cannot find module 'micromark-util-types' or its corresponding type declarations.
     9 | export type Exiter = import('micromark-util-types').Exiter
    10 | export type State = import('micromark-util-types').State
  > 11 | export type Event = import('micromark-util-types').Event
       |                            ^^^^^^^^^^^^^^^^^^^^^^
    12 |

@github-actions github-actions bot added 👋 phase/new Post is being triaged automatically 🤞 phase/open Post is being triaged manually and removed 👋 phase/new Post is being triaged automatically labels Mar 14, 2022
@codecov-commenter

This comment was marked as resolved.

@wooorm wooorm changed the title Add packages that types depend on to dependencies Add missing dependency for types Mar 24, 2022
@wooorm wooorm merged commit 0b475cd into micromark:main Mar 24, 2022
@wooorm wooorm added the 💪 phase/solved Post is done label Mar 24, 2022
@github-actions

This comment has been minimized.

@github-actions github-actions bot removed the 🤞 phase/open Post is being triaged manually label Mar 24, 2022
@Methuselah96 Methuselah96 deleted the fix-type-dependencies branch March 25, 2022 02:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

💪 phase/solved Post is done

Development

Successfully merging this pull request may close these issues.

3 participants