Skip to content

Commit 5f7c5c1

Browse files
repo: perform yarn upgrade (#12990)
The commit performs a `yarn upgrade` of the framework to better represent what downstream applications pull with our version ranges, and to resolve known security vulnerabilities which were pulled by our lockfile. The changes also make sure that our declared ranges for dependencies are correct and fixes any compilation errors. Signed-off-by: vince-fugnitto <vincent.fugnitto@ericsson.com>
1 parent 0105204 commit 5f7c5c1

File tree

5 files changed

+1457
-1160
lines changed

5 files changed

+1457
-1160
lines changed

examples/api-samples/src/electron-main/update/sample-updater-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { SampleUpdater, SampleUpdaterClient, UpdateStatus } from '../../common/u
2222
export class SampleUpdaterImpl implements SampleUpdater, ElectronMainApplicationContribution {
2323

2424
protected clients: Array<SampleUpdaterClient> = [];
25-
protected inProgressTimer: NodeJS.Timer | undefined;
25+
protected inProgressTimer: NodeJS.Timeout | undefined;
2626
protected available = false;
2727

2828
async checkForUpdates(): Promise<{ status: UpdateStatus }> {

packages/core/src/electron-main/electron-main-application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ export class ElectronMainApplication {
478478
*/
479479
protected attachSaveWindowState(electronWindow: BrowserWindow): void {
480480
const windowStateListeners = new DisposableCollection();
481-
let delayedSaveTimeout: NodeJS.Timer | undefined;
481+
let delayedSaveTimeout: NodeJS.Timeout | undefined;
482482
const saveWindowStateDelayed = () => {
483483
if (delayedSaveTimeout) {
484484
clearTimeout(delayedSaveTimeout);

packages/filesystem/src/node/nsfw-watcher/nsfw-filesystem-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class NsfwWatcher {
7373
/**
7474
* When the ref count hits zero, we schedule this watch handle to be disposed.
7575
*/
76-
protected deferredDisposalTimer: NodeJS.Timer | undefined;
76+
protected deferredDisposalTimer: NodeJS.Timeout | undefined;
7777

7878
/**
7979
* This deferred only rejects with `WatcherDisposal` and never resolves.

packages/plugin-ext/src/plugin/status-bar/status-bar-item.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class StatusBarItemImpl implements theia.StatusBarItem {
4040
private _accessibilityInformation: theia.AccessibilityInformation;
4141

4242
private _isVisible: boolean;
43-
private _timeoutHandle: NodeJS.Timer | undefined;
43+
private _timeoutHandle: NodeJS.Timeout | undefined;
4444

4545
_proxy: StatusBarMessageRegistryMain;
4646

0 commit comments

Comments
 (0)