Skip to content

Commit 2893134

Browse files
Jason3Sgithub-actions[bot]
authored andcommitted
ci: Update ALL Dependencies -- Workflow Bot
1 parent 7467800 commit 2893134

File tree

6 files changed

+66
-66
lines changed

6 files changed

+66
-66
lines changed

.gitpod.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
33
# and commit this file to your remote git repository to share the goodness with others.
44

5-
tasks:
6-
[]
5+
tasks: []
76
# - init: yarn install

design-docs/v2.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,5 @@ Issues should be tracked with the `v2` milestone.
6262
loading any untrusted sources.
6363

6464
There is a two step plan:
65-
6665
1. Disable the extension in an untrusted environment.
6766
2. Enable the extension and use `cspell` trust settings to prevent loading of untrusted `.js` files.

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4268,7 +4268,7 @@
42684268
"shx": "^0.4.0",
42694269
"tsup": "^8.5.0",
42704270
"typescript": "~5.8.3",
4271-
"typescript-eslint": "^8.34.1",
4271+
"typescript-eslint": "^8.35.0",
42724272
"vite": "^6.3.5",
42734273
"vitest": "~3.2.4"
42744274
},

packages/_server/src/server.mts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,8 @@ export function run(): void {
157157
dd(
158158
documentSettings.onDidUpdateConfiguration(
159159
(update) => (
160-
logInfo('onDidUpdateConfiguration'), clientServerApi.clientNotification.onDocumentConfigChange({ uris: [update.uri] })
160+
logInfo('onDidUpdateConfiguration'),
161+
clientServerApi.clientNotification.onDocumentConfigChange({ uris: [update.uri] })
161162
),
162163
),
163164
);

packages/json-rpc-api/src/json-rpc-api.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ function mapNotificationsToFn<T extends Notifications>(
263263
Object.entries(notifications).map(([name]) => {
264264
const methodName = prefix + name;
265265
const fn = (...params: any) => (
266-
logger?.log(`send notification "${name}" %o`, params), connection.sendNotification(methodName, params)
266+
logger?.log(`send notification "${name}" %o`, params),
267+
connection.sendNotification(methodName, params)
267268
);
268269
return [name, fn];
269270
}),

0 commit comments

Comments
 (0)