Skip to content
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

addon_folders.ts: assign scheme to URIs created for mockups #147

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

kiraacorsac
Copy link

@kiraacorsac kiraacorsac commented Aug 31, 2023

Correctly constructs URI objects that are passed to functions related to searching addon files.

Additionally, vscode dependency is updated to a non-depricated version, compatible with the same engine version, and typescript is updated to a version that is compatible with that version.

Small changes in addon_folder.ts are to make the new typescript version happy.

Closes #146

@@ -46,7 +46,7 @@ export function handleErrors(func: () => Promise<void>) {
try {
await func();
}
catch (err) {
catch (err: any) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems like a drive-by typing change.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe the new typescript version didn't compile without it.

@kiraacorsac
Copy link
Author

looking at MR now, it should have been two MRs with the a "assign a scheme" depending on the "update packages". I can fix it if needed - I was kinda in a hurry to compile a working version for myself.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Addons are not found if their folders are not on the system drive.
2 participants