Skip to content

Commit 7c6cf45

Browse files
committed
Fix version check for alpha
1 parent 8781aa9 commit 7c6cf45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tailwindcss-language-server/src/features.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export type Feature =
2222
export function supportedFeatures(version: string): Feature[] {
2323
let features: Feature[] = []
2424

25-
if (semver.gte(version, '4.0.0')) {
25+
if (semver.gte(version, '4.0.0-alpha.1')) {
2626
return ['css-at-theme', 'layer:base', 'content-list']
2727
}
2828

0 commit comments

Comments
 (0)