Skip to content

Commit 1520662

Browse files
committed
chore: update deps
1 parent 044030d commit 1520662

File tree

7 files changed

+1560
-1277
lines changed

7 files changed

+1560
-1277
lines changed

.github/workflows/autofix.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v4
20-
21-
- name: Use Node.js lts/*
22-
uses: actions/setup-node@v4
20+
- uses: pnpm/action-setup@v4
21+
- uses: actions/setup-node@v4
2322
with:
2423
node-version: lts/*
2524

.github/workflows/update.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13+
- uses: pnpm/action-setup@v4
1314
- uses: actions/setup-node@v4
1415
with:
1516
node-version: lts/*

extension/src/fetch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import type { ExtensionContext } from 'vscode'
12
import { fetch } from 'ofetch'
23
import { window, workspace } from 'vscode'
3-
import type { ExtensionContext } from 'vscode'
44
import { getConfig } from './config'
55
import { FILE, MSG_PREFIX, URL_PREFIX } from './constants'
66

extension/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { commands } from 'vscode'
21
import type { ExtensionContext } from 'vscode'
2+
import { commands } from 'vscode'
33
import { getConfig } from './config'
44
import { fetchAndUpdate } from './fetch'
55

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "module",
33
"private": true,
4-
"packageManager": "pnpm@9.9.0",
4+
"packageManager": "pnpm@10.6.5",
55
"workspaces": [
66
"extension"
77
],
@@ -17,13 +17,13 @@
1717
"ext:pack": "nr ext:build && cd extension && vsce package --no-dependencies"
1818
},
1919
"devDependencies": {
20-
"@antfu/eslint-config": "^3.4.1",
21-
"@antfu/ni": "^0.23.0",
22-
"@types/vscode": "^1.93.0",
23-
"eslint": "^9.10.0",
24-
"eslint-factory": "^0.1.1",
25-
"ofetch": "^1.3.4",
26-
"tsup": "^8.2.4",
27-
"typescript": "^5.5.4"
20+
"@antfu/eslint-config": "^4.10.1",
21+
"@antfu/ni": "^24.3.0",
22+
"@types/vscode": "^1.98.0",
23+
"eslint": "^9.22.0",
24+
"eslint-factory": "^0.1.2",
25+
"ofetch": "^1.4.1",
26+
"tsup": "^8.4.0",
27+
"typescript": "^5.8.2"
2828
}
2929
}

0 commit comments

Comments
 (0)