We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aa60b1 commit e2285c0Copy full SHA for e2285c0
packages/tailwindcss-language-server/src/watcher/index.js
@@ -74,7 +74,11 @@ function resolve() {
74
var parsed = builds.map(parseTags)
75
var candidates = parsed.filter(matchTags(runtime, abi))
76
var winner = candidates.sort(compareTags(runtime))[0]
77
- if (winner) return list[winner.file]()
+ if (winner) {
78
+ try {
79
+ return list[winner.file]()
80
+ } catch (_error) {}
81
+ }
82
}
83
84
function parseTags(file) {
0 commit comments