Skip to content

Commit

Permalink
chore: use [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomocusinato committed Mar 11, 2025
1 parent 6e9577a commit 96c723b
Show file tree
Hide file tree
Showing 5 changed files with 530 additions and 381 deletions.
44 changes: 22 additions & 22 deletions arduino-ide-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,29 @@
},
"dependencies": {
"@grpc/grpc-js": "^1.8.14",
"@theia/application-package": "1.47.0",
"@theia/core": "1.47.0",
"@theia/debug": "1.47.0",
"@theia/editor": "1.47.0",
"@theia/electron": "1.47.0",
"@theia/filesystem": "1.47.0",
"@theia/keymaps": "1.47.0",
"@theia/markers": "1.47.0",
"@theia/messages": "1.47.0",
"@theia/monaco": "1.47.0",
"@theia/application-package": "1.48.3",
"@theia/core": "1.48.3",
"@theia/debug": "1.48.3",
"@theia/editor": "1.48.3",
"@theia/electron": "1.48.3",
"@theia/filesystem": "1.48.3",
"@theia/keymaps": "1.48.3",
"@theia/markers": "1.48.3",
"@theia/messages": "1.48.3",
"@theia/monaco": "1.48.3",
"@theia/monaco-editor-core": "1.83.101",
"@theia/navigator": "1.47.0",
"@theia/outline-view": "1.47.0",
"@theia/output": "1.47.0",
"@theia/plugin-ext": "1.47.0",
"@theia/plugin-ext-vscode": "1.47.0",
"@theia/preferences": "1.47.0",
"@theia/scm": "1.47.0",
"@theia/search-in-workspace": "1.47.0",
"@theia/terminal": "1.47.0",
"@theia/test": "1.47.0",
"@theia/typehierarchy": "1.47.0",
"@theia/workspace": "1.47.0",
"@theia/navigator": "1.48.3",
"@theia/outline-view": "1.48.3",
"@theia/output": "1.48.3",
"@theia/plugin-ext": "1.48.3",
"@theia/plugin-ext-vscode": "1.48.3",
"@theia/preferences": "1.48.3",
"@theia/scm": "1.48.3",
"@theia/search-in-workspace": "1.48.3",
"@theia/terminal": "1.48.3",
"@theia/test": "1.48.3",
"@theia/typehierarchy": "1.48.3",
"@theia/workspace": "1.48.3",
"@tippyjs/react": "^4.2.5",
"@types/auth0-js": "^9.21.3",
"@types/btoa": "^1.2.3",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import { Deferred } from '@theia/core/lib/common/promise-util';
import type {
NewWindowOptions,
WindowSearchParams,
} from '@theia/core/lib/common/window';
import type { NewWindowOptions } from '@theia/core/lib/common/window';
import { ElectronWindowService as TheiaElectronWindowService } from '@theia/core/lib/electron-browser/window/electron-window-service';
import { injectable, postConstruct } from '@theia/core/shared/inversify';
import { WindowServiceExt } from '../../../browser/theia/core/window-service-ext';
import {
hasStartupTasks,
StartupTasks,
} from '../../../electron-common/startup-task';
import { WindowReloadOptions } from '@theia/core/lib/browser/window/window-service';

@injectable()
export class ElectronWindowService
Expand Down Expand Up @@ -45,7 +43,7 @@ export class ElectronWindowService
}

// Overridden to support optional task owner params and make `tsc` happy.
override reload(options?: StartupTasks | WindowSearchParams): void {
override reload(options?: StartupTasks | WindowReloadOptions): void {
if (hasStartupTasks(options)) {
window.electronArduino.requestReload(options);
} else {
Expand Down
30 changes: 15 additions & 15 deletions electron-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@
"license": "AGPL-3.0-or-later",
"main": "./src-gen/backend/electron-main.js",
"dependencies": {
"@theia/core": "1.47.0",
"@theia/debug": "1.47.0",
"@theia/editor": "1.47.0",
"@theia/electron": "1.47.0",
"@theia/filesystem": "1.47.0",
"@theia/keymaps": "1.47.0",
"@theia/messages": "1.47.0",
"@theia/monaco": "1.47.0",
"@theia/navigator": "1.47.0",
"@theia/plugin-ext": "1.47.0",
"@theia/plugin-ext-vscode": "1.47.0",
"@theia/preferences": "1.47.0",
"@theia/terminal": "1.47.0",
"@theia/workspace": "1.47.0",
"@theia/core": "1.48.3",
"@theia/debug": "1.48.3",
"@theia/editor": "1.48.3",
"@theia/electron": "1.48.3",
"@theia/filesystem": "1.48.3",
"@theia/keymaps": "1.48.3",
"@theia/messages": "1.48.3",
"@theia/monaco": "1.48.3",
"@theia/navigator": "1.48.3",
"@theia/plugin-ext": "1.48.3",
"@theia/plugin-ext-vscode": "1.48.3",
"@theia/preferences": "1.48.3",
"@theia/terminal": "1.48.3",
"@theia/workspace": "1.48.3",
"arduino-ide-extension": "2.3.5"
},
"devDependencies": {
"@theia/cli": "1.47.0",
"@theia/cli": "1.48.3",
"7zip-min": "^1.4.4",
"chmodr": "^1.2.0",
"compression-webpack-plugin": "^9.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"**/ip": "^2.0.1"
},
"devDependencies": {
"@theia/cli": "1.47.0",
"@theia/cli": "1.48.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@xhmikosr/downloader": "^13.0.1",
Expand Down
Loading

0 comments on commit 96c723b

Please sign in to comment.