Skip to content

Commit 3fbb752

Browse files
committed
feat: upgrade deps
1 parent ce95bfe commit 3fbb752

File tree

7 files changed

+775
-734
lines changed

7 files changed

+775
-734
lines changed

Diff for: .gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
out
21
dist
32
node_modules
4-
*.tsbuildinfo
53
*.vsix
64
.vscode-test-web

Diff for: .vscode/tasks.json

+19-6
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,15 @@
99
"panel": "dedicated",
1010
"reveal": "never"
1111
},
12-
"problemMatcher": [
13-
"$tsc"
14-
]
12+
"problemMatcher": {
13+
"pattern": {
14+
"regexp": "__________"
15+
},
16+
"background": {
17+
"beginsPattern": "building\\.\\.\\.",
18+
"endsPattern": "finished\\."
19+
}
20+
}
1521
},
1622
{
1723
"type": "npm",
@@ -25,9 +31,16 @@
2531
"panel": "dedicated",
2632
"reveal": "never"
2733
},
28-
"problemMatcher": [
29-
"$tsc-watch"
30-
]
34+
"problemMatcher": {
35+
"pattern": {
36+
"regexp": "__________"
37+
},
38+
"background": {
39+
"activeOnStart": true,
40+
"beginsPattern": "building\\.\\.\\.",
41+
"endsPattern": "watching\\.\\.\\."
42+
}
43+
}
3144
}
3245
]
3346
}

Diff for: .vscodeignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
out
21
scripts
32
src
43
tsconfig.json
5-
tsconfig.tsbuildinfo
4+
**/*.map

Diff for: package.json

+14-20
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"author": "johnsoncodehk",
1919
"publisher": "johnsoncodehk",
2020
"engines": {
21-
"vscode": "^1.67.0"
21+
"vscode": "^1.82.0"
2222
},
2323
"activationEvents": [
2424
"onLanguage:vue",
@@ -94,36 +94,30 @@
9494
}
9595
},
9696
"scripts": {
97-
"prebuild": "tsc -b",
9897
"build": "node scripts/build",
99-
"watch": "npm run build && (npm run watch:base & npm run watch:vscode)",
100-
"watch:base": "tsc -b -w",
101-
"watch:vscode": "npm run build -- --watch",
98+
"watch": "npm run build -- --watch",
10299
"pack": "npm run build && vsce package --no-dependencies",
103100
"release": "npm run build && vsce publish --no-dependencies --target web",
104101
"pre-release": "npm run build && vsce publish --no-dependencies --target web --pre-release",
105102
"chrome": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ../volar-starter"
106103
},
107104
"devDependencies": {
108105
"@types/node": "latest",
109-
"@types/vscode": "1.67.0",
110-
"@volar/cdn": "~1.10.0",
111-
"@volar/language-server": "~1.10.0",
112-
"@volar/language-service": "~1.10.0",
113-
"@volar/typescript": "~1.10.0",
114-
"@volar/vscode": "~1.10.0",
115-
"@vue/language-server": "1.8.8",
116-
"volar-service-typescript": "0.0.11",
106+
"@types/vscode": "^1.82.0",
107+
"@volar/cdn": "~1.10.6",
108+
"@volar/language-server": "~1.10.6",
109+
"@volar/language-service": "~1.10.6",
110+
"@volar/typescript": "~1.10.6",
111+
"@volar/vscode": "~1.10.6",
117112
"@vscode/test-web": "latest",
118-
"esbuild": "0.15.18",
113+
"@vscode/vsce": "latest",
114+
"@vue/language-server": "1.8.22",
115+
"esbuild": "latest",
119116
"esbuild-plugin-copy": "latest",
120117
"esbuild-plugin-polyfill-node": "^0.3.0",
121118
"path-browserify": "^1.0.1",
122-
"punycode": "^2.3.0",
123-
"typescript": "5.1.3",
124-
"util": "^0.12.5",
125-
"url": "^0.11.1",
126-
"vsce": "latest",
127-
"vscode-languageclient": "^8.1.0"
119+
"typescript": "latest",
120+
"volar-service-typescript": "0.0.15",
121+
"vscode-languageclient": "^9.0.1"
128122
}
129123
}

0 commit comments

Comments
 (0)