File tree 1 file changed +3
-3
lines changed
packages/@tailwindcss-postcss/src
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ function tailwindcss(opts: PluginOptions = {}): AcceptedPlugin {
16
16
let optimize = opts . optimize ?? process . env . NODE_ENV === 'production'
17
17
18
18
return {
19
- postcssPlugin : 'tailwindcss-v4 ' ,
19
+ postcssPlugin : '@ tailwindcss/postcss ' ,
20
20
plugins : [
21
21
// We need to run `postcss-import` first to handle `@import` rules.
22
22
postcssImport ( ) ,
@@ -64,7 +64,7 @@ function tailwindcss(opts: PluginOptions = {}): AcceptedPlugin {
64
64
for ( let file of files ) {
65
65
result . messages . push ( {
66
66
type : 'dependency' ,
67
- plugin : 'tailwindcss-v4 ' ,
67
+ plugin : '@ tailwindcss/postcss ' ,
68
68
file,
69
69
parent : result . opts . from ,
70
70
} )
@@ -76,7 +76,7 @@ function tailwindcss(opts: PluginOptions = {}): AcceptedPlugin {
76
76
for ( let { base, glob } of globs ) {
77
77
result . messages . push ( {
78
78
type : 'dir-dependency' ,
79
- plugin : 'tailwindcss-v4 ' ,
79
+ plugin : '@ tailwindcss/postcss ' ,
80
80
dir : base ,
81
81
glob,
82
82
parent : result . opts . from ,
You can’t perform that action at this time.
0 commit comments