Skip to content

Commit

Permalink
repo: perform yarn upgrade (#12990)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
vince-fugnitto authored Nov 28, 2023
1 parent 0105204 commit 5f7c5c1
Show file tree
Hide file tree
Showing 5 changed files with 1,457 additions and 1,160 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { SampleUpdater, SampleUpdaterClient, UpdateStatus } from '../../common/u
export class SampleUpdaterImpl implements SampleUpdater, ElectronMainApplicationContribution {

protected clients: Array<SampleUpdaterClient> = [];
protected inProgressTimer: NodeJS.Timer | undefined;
protected inProgressTimer: NodeJS.Timeout | undefined;
protected available = false;

async checkForUpdates(): Promise<{ status: UpdateStatus }> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ export class ElectronMainApplication {
*/
protected attachSaveWindowState(electronWindow: BrowserWindow): void {
const windowStateListeners = new DisposableCollection();
let delayedSaveTimeout: NodeJS.Timer | undefined;
let delayedSaveTimeout: NodeJS.Timeout | undefined;
const saveWindowStateDelayed = () => {
if (delayedSaveTimeout) {
clearTimeout(delayedSaveTimeout);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class NsfwWatcher {
/**
* When the ref count hits zero, we schedule this watch handle to be disposed.
*/
protected deferredDisposalTimer: NodeJS.Timer | undefined;
protected deferredDisposalTimer: NodeJS.Timeout | undefined;

/**
* This deferred only rejects with `WatcherDisposal` and never resolves.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class StatusBarItemImpl implements theia.StatusBarItem {
private _accessibilityInformation: theia.AccessibilityInformation;

private _isVisible: boolean;
private _timeoutHandle: NodeJS.Timer | undefined;
private _timeoutHandle: NodeJS.Timeout | undefined;

_proxy: StatusBarMessageRegistryMain;

Expand Down
Loading

0 comments on commit 5f7c5c1

Please sign in to comment.