File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,16 @@ let css: TestEntry[] = [
49
49
[ `@source inline("flex");` , `@source inline('flex');` ] ,
50
50
51
51
[
52
- `@import "tailwindcss";\n\n@use "tailwindcss";\n\n@source "./file.js";\n\n.foo {\n color: red;\n}` ,
53
- `@import 'tailwindcss';\n\n@use 'tailwindcss';\n\n@source './file.js';\n\n.foo {\n color: red;\n}` ,
52
+ `@import "tailwindcss";\n\n@import "./theme.css";\n\n@source "./file.js";\n\n.foo {\n color: red;\n}` ,
53
+ `@import 'tailwindcss';\n\n@import './theme.css';\n\n@source './file.js';\n\n.foo {\n color: red;\n}` ,
54
+ ] ,
55
+ [
56
+ `@import "tailwindcss";\n\n@import "./theme.css";\n\n@plugin "./file.js";\n\n.foo {\n color: red;\n}` ,
57
+ `@import 'tailwindcss';\n\n@import './theme.css';\n\n@plugin './file.js';\n\n.foo {\n color: red;\n}` ,
58
+ ] ,
59
+ [
60
+ `@import "tailwindcss";\n\n@import "./theme.css";\n\n@config "./file.js";\n\n.foo {\n color: red;\n}` ,
61
+ `@import 'tailwindcss';\n\n@import './theme.css';\n\n@config './file.js';\n\n.foo {\n color: red;\n}` ,
54
62
] ,
55
63
]
56
64
You can’t perform that action at this time.
0 commit comments