Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@source directive not working with pnpm #16038

Closed
adityaa72 opened this issue Jan 30, 2025 · 6 comments · Fixed by #17391
Closed

@source directive not working with pnpm #16038

adityaa72 opened this issue Jan 30, 2025 · 6 comments · Fixed by #17391
Assignees
Labels

Comments

@adityaa72
Copy link

adityaa72 commented Jan 30, 2025

What version of Tailwind CSS are you using?

v4.0.1

What build tool (or framework if it abstracts the build tool) are you using?

Next.js v15.1.6

What version of Node.js are you using?

v20.0.0

What browser are you using?

Firefox

What operating system are you using?

macOS

Reproduction URL

Tailwind 4 with pnpm
Tailwind 4 with yarn

Describe your issue

@source directive not working for node_modules packages with pnpm and nextjs. The same code is working with nextjs and yarn, and nextjs and npm, also same package works with pnpm with vite with @tailwindcss/vite

@import "tailwindcss";
@import "@jamsr-ui/theme/styles.css";

/* This is not working */
@source "../node_modules/@jamsr-ui";

/* These are working */
/* @source "../node_modules/@jamsr-ui/text"; */
/* @source "../node_modules/@jamsr-ui/button"; */
/* @source "../node_modules/@jamsr-ui/utils"; */
/* @source "../node_modules"; */

Here @source "../node_modules/@jamsr-ui"; is not working but nested @source are working as like @source "../node_modules/@jamsr-ui/text";.
Even @source "../node_modules" is working

@coadinglife
Copy link

Yaa, how to fix??

@adambirds
Copy link

This also affects npm as well as discussed here in the discord: https://discord.com/channels/486935104384532500/1341775942846255145

this makes it work;

@import 'tailwindcss';
@source '../../node_modules/tablewind/dist';

but this one doesn't.

@import 'tailwindcss';
@source '../../node_modules/tablewind';

@philipp-spiess
Copy link
Member

@adambirds Thanks for looking into this and for explaining the issue and potential ways to fix this in #16669. Going to merge this issue into #16669 so we only track this at one place 👍

@adityaa72
Copy link
Author

@philipp-spiess Thanks, but this is not a duplicate of #16669. I don't have dist in .gitignore and this code is working with yarn and npm. This issue is related to pnpm because pnpm create node_modules with symlinks . Setting node-linker=hoisted in .npmrc file solve the issue.

@philipp-spiess
Copy link
Member

@adityaa72 Thanks for the additional context, I've reopened so we can investigate 👍

@RobinMalfait
Copy link
Member

Hey!

Alright we figured it out and it should be solved by #17391 and will be available in the next release.

philipp-spiess pushed a commit that referenced this issue Mar 28, 2025
This PR fixes some issues related to symlinks when using them in the
`@source` directive.

Fixes: #16765
Fixes: #16038

## Test plan

1. Added tests to prove this works
   - Added a recursive symlink test as well to make sure we don't hang
2. Existing tests still pass


[ci-all]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants