Hi @vince-fugnitto, thanks for the quick reply.
This is my current minimal ish package.json
. When I click that menu item or Ctrl-Alt-I
I see nothing at all happen, both in the electron window and in the CLI where I ran yarn theia start
.
{
"private": true,
"main": "src-gen/frontend/electron-main.js",
"theia": {
"target": "electron",
"backend": {
"config": {
"startupTimeout": -1
}
},
"frontend": {
"config": {
"applicationName": "Theia Thing"
}
}
},
"dependencies": {
"@theia/callhierarchy": "1.17.2",
"@theia/electron": "1.17.2",
"@theia/debug": "1.17.2",
"@theia/markers": "1.17.2",
"@theia/messages": "1.17.2",
"@theia/navigator": "1.17.2",
"@theia/outline-view": "1.17.2",
"@theia/preferences": "1.17.2",
"@theia/preview": "1.17.2"
},
"devDependencies": {
"@theia/cli": "1.17.2",
"electron-builder": "~22.3.2"
},
"scripts": {
"prepare": "yarn run clean && yarn build && yarn run download:plugins",
"clean": "theia clean",
"build": "theia build",
"watch": "theia build --watch --mode development",
"start": "theia start --plugins=local-dir:plugins",
"download:plugins": "theia download:plugins",
"package": "electron-builder",
"package:preview": "electron-builder --dir"
},
"theiaPlugins": {},
"theiaPluginsDir": "plugins",
"theiaPluginsExcludeIds": []
}
I’m pointing at old versions of theia stuff because I’m going to be playing around with https://github.com/eclipse-cdt-cloud/theia-trace-extension and AFACT that’s what the only published version of that is compatible with. Although, I’m thinking that isn’t the problem because the AppImage example from that extension uses updated deps and has the same issue.