-
-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all dependencies (#1121)
- Loading branch information
1 parent
b78bc38
commit cc01c0b
Showing
18 changed files
with
1,099 additions
and
878 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"extends": ["config:base", ":preserveSemverRanges", "group:all"], | ||
"ignoreDeps": ["unified", "remark", "remark-parse", "remark-stringify"] | ||
"extends": ["config:base", ":preserveSemverRanges", "group:all"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
/* Copyright 2021, Milkdown by Mirone. */ | ||
|
||
/* eslint-disable vars-on-top */ | ||
/* eslint-disable no-var */ | ||
|
||
/// <reference types="cypress" /> | ||
/// <reference types="vite/client" /> | ||
|
||
import { Editor } from '@milkdown/core'; | ||
import type { Editor } from '@milkdown/core' | ||
import type { EditorView } from '@milkdown/prose/view' | ||
import type { Telemetry } from "@milkdown/ctx"; | ||
import type { Telemetry } from '@milkdown/ctx' | ||
|
||
declare global { | ||
var __milkdown__: Editor; | ||
var __milkdown__: Editor | ||
|
||
var __view__: EditorView; | ||
var __setMarkdown__: (markdown: string) => void; | ||
var __getMarkdown__: () => string; | ||
var __view__: EditorView | ||
var __setMarkdown__: (markdown: string) => void | ||
var __getMarkdown__: () => string | ||
|
||
var __inspect__: () => Telemetry[] | ||
var __inspect__: () => Telemetry[] | ||
|
||
namespace Cypress { | ||
interface Chainable { | ||
paste(payload: Record<string, unknown>): Chainable<void> | ||
} | ||
} | ||
|
||
var commands: { | ||
toggleStrong?: () => void; | ||
toggleEmphasis?: () => void; | ||
addTable?: (x?: number, y?: number) => void; | ||
addTable2?: (x?: number, y?: number) => void; | ||
namespace Cypress { | ||
interface Chainable { | ||
paste(payload: Record<string, unknown>): Chainable<void> | ||
} | ||
} | ||
|
||
var commands: { | ||
toggleStrong?: () => void | ||
toggleEmphasis?: () => void | ||
addTable?: (x?: number, y?: number) => void | ||
addTable2?: (x?: number, y?: number) => void | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"jsx": "react", | ||
"rootDir": "src", | ||
"outDir": "lib", | ||
"jsx": "react" | ||
"outDir": "lib" | ||
}, | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "lib", | ||
"lib": ["dom", "es2020"], | ||
"jsx": "react", | ||
"jsxFactory": "h", | ||
"jsxFragmentFactory": "Fragment", | ||
"rootDir": "src", | ||
"types": ["vue"], | ||
"lib": ["dom", "es2020"] | ||
"outDir": "lib" | ||
}, | ||
"include": ["src"] | ||
} |
Oops, something went wrong.