File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
tailwindcss-language-service/src Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,13 @@ export type Feature =
22
22
export function supportedFeatures(version: string): Feature[] {
23
23
let features: Feature[] = []
24
24
25
- if (semver.gte(version, '4.0.0-alpha.1')) {
25
+ let isInsidersV3 = version.startsWith('0.0.0-insiders')
26
+
27
+ if (!isInsidersV3 && semver.gte(version, '4.0.0-alpha.1')) {
26
28
return ['css-at-theme', 'layer:base', 'content-list']
27
29
}
28
30
29
- if (version.startsWith('0.0.0-oxide')) {
31
+ if (!isInsidersV3 && version.startsWith('0.0.0-oxide')) {
30
32
return ['css-at-theme', 'layer:base', 'content-list']
31
33
}
32
34
Original file line number Diff line number Diff line change 2
2
3
3
## Prerelease
4
4
5
- - Nothing yet!
5
+ - Fix detection of v3 insiders builds ([#1007](https://github.com/tailwindlabs/tailwindcss-intellisense/pull/1007))
6
6
7
7
## 0.12.3
8
8
You can’t perform that action at this time.
0 commit comments