Skip to content

Commit 77bd7ce

Browse files
committed
chore: add peer dependencies in package-lock.json and test/package-lock.json
Signed-off-by: 7HR4IZ3 <[email protected]>
1 parent c2cea32 commit 77bd7ce

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

package-lock.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

patches/integration.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Index: code-server/lib/vscode/src/server-main.ts
265265
+++ code-server/lib/vscode/src/server-main.ts
266266
@@ -22,6 +22,9 @@ import { IServerAPI } from './vs/server/
267267
perf.mark('code/server/start');
268-
(globalThis as any).vscodeServerStartTime = performance.now();
268+
(globalThis as { vscodeServerStartTime?: number }).vscodeServerStartTime = performance.now();
269269

270270
+// This is not indented to make the diff less noisy. We need to move this out
271271
+// of the top-level so it will not run immediately and we can control the start.
@@ -279,7 +279,7 @@ Index: code-server/lib/vscode/src/server-main.ts
279279
}
280280
+}
281281

282-
function sanitizeStringArg(val: any): string | undefined {
282+
function sanitizeStringArg(val: unknown): string | undefined {
283283
if (Array.isArray(val)) { // if an argument is passed multiple times, minimist creates an array
284284
@@ -283,3 +287,22 @@ function prompt(question: string): Promi
285285
});

test/package-lock.json

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)