Fix JSR issues

pull/1158/merge
Zef Hemel 2025-02-25 18:36:45 +01:00
parent 32f7c5dab7
commit 66f378f4af
2 changed files with 4 additions and 3 deletions

View File

@ -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",

View File

@ -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");
} }