-
Notifications
You must be signed in to change notification settings - Fork 28
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
Missing Contents/Resources/app/out/vs/base/index.js
#123
Comments
@haberdashPI this is definitely not expected, not sure how this is actually related to this package but it certainly may. Any investigations and help to resolve this issue would be appreciated. |
Thank you @christian-bromann; I'm happy to try to do some digging myself. About the Is the place to get started to review the code of |
Update: this seems to be independent of calling async function specForBindings(text: string) {
let workbench = await browser.getWorkbench();
let config = path.join(tempdir, 'config.toml');
fs.writeFileSync(config, text);
console.log("[USER]: executing keybinding activation command");
let input = await workbench.executeCommand('Master Key: Activate Keybindings');
console.log("[USER]: requesting file selector");
await input.setText('File...');
await input.confirm();
console.log("[USER]: specifying config file as input");
await input.setText(config);
await input.confirm();
}
|
After a little bit more investigation, it appears that the main issue here is that when creating a web extension, one has to set browser to an actual browser in in |
When calling the following example code from the documentation:
I get an error about
[prefix]Contents/Resources/app/out/vs/base/index.js
file missing,Inspecting this folder, I see no such file. I tried downloading versions 1.86 - 1.90 of vscode and encountered the same error for each.
Is this an expected error? Is this some issue with my setup?
The text was updated successfully, but these errors were encountered: