-
Notifications
You must be signed in to change notification settings - Fork 675
Plugin Dependencies #1030
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plugin Dependencies #1030
Conversation
|
have you tested it? It doesn't work. |
|
I have tested it and it works for both free and paid plugins though further testing is needed for paid plugins |
Now it's working fine. |
Sorry for the late response, was facing some issues irl. I am deliberately either to show an alert(
"Installer Notice",
"Acode is going to install the following dependencies<br/>"
+ plugin.dependencies.join("<br/>"),
() => {
// Resolve dependencies
},
);Or const shouldInstall = await confirm(
"Installer Notice",
"Acode is going to install the following dependencies<br/>"
+ plugin.dependencies.join("<br/>"),
);
if (shouldInstall) {
// Resolve dependencies
} |
|
Use confirmation |
Ok 👍 |
No description provided.