Skip to content

Commit

Permalink
fix: update message for missing Electron main entries (#13242)
Browse files Browse the repository at this point in the history
The warning message for missing Electron main entries still refered to
'src-gen/frontend'. However since Theia 1.39.0 it should be either
'src-gen/backend' or as now indicated 'lib/backend'.
  • Loading branch information
sdirix authored Jan 10, 2024
1 parent bfa524d commit 6a7bd87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class ApplicationPackageManager {
console.warn(
`WARNING: ${this.pck.packagePath} does not have a "main" entry.\n` +
'Please add the following line:\n' +
' "main": "src-gen/frontend/electron-main.js"'
' "main": "lib/backend/electron-main.js"'
);
}

Expand Down

0 comments on commit 6a7bd87

Please sign in to comment.