mirror of
https://github.com/kunkunsh/kunkun-ext-zed.git
synced 2025-04-03 17:56:46 +00:00
Add pre-flight checks for zed and deno commands
- Check for zed command availability before extension load - Verify deno command is installed - Provide user-friendly error toasts if commands are missing - Bump package version to 0.0.3
This commit is contained in:
parent
b0b59edf7e
commit
397468911a
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.kunkun.sh",
|
"$schema": "https://schema.kunkun.sh",
|
||||||
"name": "kunkun-ext-zed",
|
"name": "kunkun-ext-zed",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
18
src/index.ts
18
src/index.ts
@ -84,6 +84,24 @@ function openWithZed(path: string) {
|
|||||||
|
|
||||||
class ExtensionTemplate extends TemplateUiCommand {
|
class ExtensionTemplate extends TemplateUiCommand {
|
||||||
async load() {
|
async load() {
|
||||||
|
shell.hasCommand("zed").then((hasCommand) => {
|
||||||
|
if (!hasCommand) {
|
||||||
|
toast.error(
|
||||||
|
"zed command not installed to PATH, please install it the 'zed' command."
|
||||||
|
);
|
||||||
|
return ui.goBack();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
shell.hasCommand("deno").then((hasCommand) => {
|
||||||
|
if (!hasCommand) {
|
||||||
|
toast.error(
|
||||||
|
"This extension requires the 'deno' command to be installed to PATH, but not detected."
|
||||||
|
);
|
||||||
|
return ui.goBack();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
ui.setSearchBarPlaceholder(
|
ui.setSearchBarPlaceholder(
|
||||||
"Enter a search term, and press enter to search"
|
"Enter a search term, and press enter to search"
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user