Skip to content

Commit d590d06

Browse files
committed
rename PostCSS plugin name from tailwindcss-v4 to @tailwindcss/postcss
1 parent c5dfc3a commit d590d06

File tree

1 file changed

+3
-3
lines changed
  • packages/@tailwindcss-postcss/src

1 file changed

+3
-3
lines changed

packages/@tailwindcss-postcss/src/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function tailwindcss(opts: PluginOptions = {}): AcceptedPlugin {
1616
let optimize = opts.optimize ?? process.env.NODE_ENV === 'production'
1717

1818
return {
19-
postcssPlugin: 'tailwindcss-v4',
19+
postcssPlugin: '@tailwindcss/postcss',
2020
plugins: [
2121
// We need to run `postcss-import` first to handle `@import` rules.
2222
postcssImport(),
@@ -64,7 +64,7 @@ function tailwindcss(opts: PluginOptions = {}): AcceptedPlugin {
6464
for (let file of files) {
6565
result.messages.push({
6666
type: 'dependency',
67-
plugin: 'tailwindcss-v4',
67+
plugin: '@tailwindcss/postcss',
6868
file,
6969
parent: result.opts.from,
7070
})
@@ -76,7 +76,7 @@ function tailwindcss(opts: PluginOptions = {}): AcceptedPlugin {
7676
for (let { base, glob } of globs) {
7777
result.messages.push({
7878
type: 'dir-dependency',
79-
plugin: 'tailwindcss-v4',
79+
plugin: '@tailwindcss/postcss',
8080
dir: base,
8181
glob,
8282
parent: result.opts.from,

0 commit comments

Comments
 (0)