Fix JSR issues
parent
32f7c5dab7
commit
66f378f4af
|
@ -24,7 +24,8 @@
|
||||||
"publish": {
|
"publish": {
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"website",
|
"website",
|
||||||
"CHANGELOG.md"
|
"CHANGELOG.md",
|
||||||
|
"**/*.md"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"tasks": {
|
"tasks": {
|
||||||
|
@ -149,7 +150,7 @@
|
||||||
"fuse": "https://deno.land/x/fuse@v6.4.1/dist/fuse.esm.min.js",
|
"fuse": "https://deno.land/x/fuse@v6.4.1/dist/fuse.esm.min.js",
|
||||||
"gitignore-parser": "https://esm.sh/gitignore-parser@0.0.2",
|
"gitignore-parser": "https://esm.sh/gitignore-parser@0.0.2",
|
||||||
"hono/": "https://deno.land/x/hono@v3.12.2/",
|
"hono/": "https://deno.land/x/hono@v3.12.2/",
|
||||||
"js-yaml": "https://esm.sh/js-yaml@4.1.0",
|
"js-yaml": "npm:js-yaml@4.1.0",
|
||||||
"mimetypes": "https://deno.land/x/mimetypes@v1.0.0/mod.ts",
|
"mimetypes": "https://deno.land/x/mimetypes@v1.0.0/mod.ts",
|
||||||
"porter-stemmer": "https://esm.sh/porter-stemmer@0.9.1",
|
"porter-stemmer": "https://esm.sh/porter-stemmer@0.9.1",
|
||||||
"preact": "https://esm.sh/preact@10.23.1",
|
"preact": "https://esm.sh/preact@10.23.1",
|
||||||
|
|
|
@ -121,7 +121,7 @@ export function reloadUI(): Promise<void> {
|
||||||
/**
|
/**
|
||||||
* Rebuilds the editor state to ensure the dispatch updates the state.
|
* Rebuilds the editor state to ensure the dispatch updates the state.
|
||||||
*/
|
*/
|
||||||
export function rebuildEditorState() {
|
export function rebuildEditorState(): Promise<void> {
|
||||||
return syscall("editor.rebuildEditorState");
|
return syscall("editor.rebuildEditorState");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue