8000 feat: use `theia@1.57.0` by giacomocusinato · Pull Request #2654 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

feat: use theia@1.57.0 #2654

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

Merged
merged 18 commits into from
Mar 28, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: electron version parsing
Electron version is now pinned, so replace caret only if found
  • Loading branch information
giacomocusinato committed Mar 28, 2025
commit 172544f57c6d3af0ce90268e2e3595efc7d9a270
2 changes: 1 addition & 1 deletion electron-app/scripts/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function run() {
'--publish',
'never',
'-c.electronVersion',
electronVersion.slice(1), // removes the leading ^ from the version. TODO: user `semver` to clean it.
semver.clean(electronVersion.replace(/^\^/, '')),
'-c.extraMetadata.version',
version,
// overrides the `name` in the `package.json` to keep the `localStorage` location. (https://github.com/arduino/arduino-ide/pull/2144#pullrequestreview-1554005028)
Expand Down
0