Skip to content

Commit 96c723b

Browse files
chore: use [email protected]
1 parent 6e9577a commit 96c723b

File tree

5 files changed

+530
-381
lines changed

5 files changed

+530
-381
lines changed

arduino-ide-extension/package.json

+22-22
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,29 @@
2424
},
2525
"dependencies": {
2626
"@grpc/grpc-js": "^1.8.14",
27-
"@theia/application-package": "1.47.0",
28-
"@theia/core": "1.47.0",
29-
"@theia/debug": "1.47.0",
30-
"@theia/editor": "1.47.0",
31-
"@theia/electron": "1.47.0",
32-
"@theia/filesystem": "1.47.0",
33-
"@theia/keymaps": "1.47.0",
34-
"@theia/markers": "1.47.0",
35-
"@theia/messages": "1.47.0",
36-
"@theia/monaco": "1.47.0",
27+
"@theia/application-package": "1.48.3",
28+
"@theia/core": "1.48.3",
29+
"@theia/debug": "1.48.3",
30+
"@theia/editor": "1.48.3",
31+
"@theia/electron": "1.48.3",
32+
"@theia/filesystem": "1.48.3",
33+
"@theia/keymaps": "1.48.3",
34+
"@theia/markers": "1.48.3",
35+
"@theia/messages": "1.48.3",
36+
"@theia/monaco": "1.48.3",
3737
"@theia/monaco-editor-core": "1.83.101",
38-
"@theia/navigator": "1.47.0",
39-
"@theia/outline-view": "1.47.0",
40-
"@theia/output": "1.47.0",
41-
"@theia/plugin-ext": "1.47.0",
42-
"@theia/plugin-ext-vscode": "1.47.0",
43-
"@theia/preferences": "1.47.0",
44-
"@theia/scm": "1.47.0",
45-
"@theia/search-in-workspace": "1.47.0",
46-
"@theia/terminal": "1.47.0",
47-
"@theia/test": "1.47.0",
48-
"@theia/typehierarchy": "1.47.0",
49-
"@theia/workspace": "1.47.0",
38+
"@theia/navigator": "1.48.3",
39+
"@theia/outline-view": "1.48.3",
40+
"@theia/output": "1.48.3",
41+
"@theia/plugin-ext": "1.48.3",
42+
"@theia/plugin-ext-vscode": "1.48.3",
43+
"@theia/preferences": "1.48.3",
44+
"@theia/scm": "1.48.3",
45+
"@theia/search-in-workspace": "1.48.3",
46+
"@theia/terminal": "1.48.3",
47+
"@theia/test": "1.48.3",
48+
"@theia/typehierarchy": "1.48.3",
49+
"@theia/workspace": "1.48.3",
5050
"@tippyjs/react": "^4.2.5",
5151
"@types/auth0-js": "^9.21.3",
5252
"@types/btoa": "^1.2.3",

arduino-ide-extension/src/electron-browser/theia/core/electron-window-service.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
import { Deferred } from '@theia/core/lib/common/promise-util';
2-
import type {
3-
NewWindowOptions,
4-
WindowSearchParams,
5-
} from '@theia/core/lib/common/window';
2+
import type { NewWindowOptions } from '@theia/core/lib/common/window';
63
import { ElectronWindowService as TheiaElectronWindowService } from '@theia/core/lib/electron-browser/window/electron-window-service';
74
import { injectable, postConstruct } from '@theia/core/shared/inversify';
85
import { WindowServiceExt } from '../../../browser/theia/core/window-service-ext';
96
import {
107
hasStartupTasks,
118
StartupTasks,
129
} from '../../../electron-common/startup-task';
10+
import { WindowReloadOptions } from '@theia/core/lib/browser/window/window-service';
1311

1412
@injectable()
1513
export class ElectronWindowService
@@ -45,7 +43,7 @@ export class ElectronWindowService
4543
}
4644

4745
// Overridden to support optional task owner params and make `tsc` happy.
48-
override reload(options?: StartupTasks | WindowSearchParams): void {
46+
override reload(options?: StartupTasks | WindowReloadOptions): void {
4947
if (hasStartupTasks(options)) {
5048
window.electronArduino.requestReload(options);
5149
} else {

electron-app/package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
"license": "AGPL-3.0-or-later",
66
"main": "./src-gen/backend/electron-main.js",
77
"dependencies": {
8-
"@theia/core": "1.47.0",
9-
"@theia/debug": "1.47.0",
10-
"@theia/editor": "1.47.0",
11-
"@theia/electron": "1.47.0",
12-
"@theia/filesystem": "1.47.0",
13-
"@theia/keymaps": "1.47.0",
14-
"@theia/messages": "1.47.0",
15-
"@theia/monaco": "1.47.0",
16-
"@theia/navigator": "1.47.0",
17-
"@theia/plugin-ext": "1.47.0",
18-
"@theia/plugin-ext-vscode": "1.47.0",
19-
"@theia/preferences": "1.47.0",
20-
"@theia/terminal": "1.47.0",
21-
"@theia/workspace": "1.47.0",
8+
"@theia/core": "1.48.3",
9+
"@theia/debug": "1.48.3",
10+
"@theia/editor": "1.48.3",
11+
"@theia/electron": "1.48.3",
12+
"@theia/filesystem": "1.48.3",
13+
"@theia/keymaps": "1.48.3",
14+
"@theia/messages": "1.48.3",
15+
"@theia/monaco": "1.48.3",
16+
"@theia/navigator": "1.48.3",
17+
"@theia/plugin-ext": "1.48.3",
18+
"@theia/plugin-ext-vscode": "1.48.3",
19+
"@theia/preferences": "1.48.3",
20+
"@theia/terminal": "1.48.3",
21+
"@theia/workspace": "1.48.3",
2222
"arduino-ide-extension": "2.3.5"
2323
},
2424
"devDependencies": {
25-
"@theia/cli": "1.47.0",
25+
"@theia/cli": "1.48.3",
2626
"7zip-min": "^1.4.4",
2727
"chmodr": "^1.2.0",
2828
"compression-webpack-plugin": "^9.0.0",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"**/ip": "^2.0.1"
1818
},
1919
"devDependencies": {
20-
"@theia/cli": "1.47.0",
20+
"@theia/cli": "1.48.3",
2121
"@typescript-eslint/eslint-plugin": "^5.59.0",
2222
"@typescript-eslint/parser": "^5.59.0",
2323
"@xhmikosr/downloader": "^13.0.1",

0 commit comments

Comments
 (0)