chore(deps): update deps.
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 44s

This commit is contained in:
2023-07-09 06:19:21 +00:00
parent 24aadfa329
commit 1536ffa319
5 changed files with 2673 additions and 2377 deletions

View File

@@ -1,4 +1,5 @@
import { visit, Parent } from 'unist-util-visit';
import { Parent } from 'unist';
import { visit } from 'unist-util-visit';
export default function remarkCodeTitles() {
return (tree: Parent & { lang?: string }) =>

View File

@@ -1,6 +1,7 @@
import { VFile } from 'vfile';
import { visit, Parent } from 'unist-util-visit';
import { visit } from 'unist-util-visit';
import { load } from 'js-yaml';
import { Parent } from 'unist';
export default function extractFrontmatter() {
return (tree: Parent, file: VFile) => {

View File

@@ -1,5 +1,5 @@
import { Literal } from 'unist';
import { visit, Parent, Node } from 'unist-util-visit';
import { Literal, Parent, Node } from 'unist';
import { visit } from 'unist-util-visit';
import sizeOf from 'image-size';
import fs from 'fs';