-
Notifications
You must be signed in to change notification settings - Fork 208
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
Migrate to pnpm
#1029
Migrate to pnpm
#1029
Conversation
9f57f6b
to
3e841d9
Compare
3e841d9
to
3fcec52
Compare
3fcec52
to
4df1b05
Compare
I've fixed all the TypeScript issues, test issues, etc… So only thing now is figuring out how to replace the |
From what I can tell in my testing the |
"@types/culori": "^2.1.0", | ||
"culori": "^4.0.1", | ||
"esbuild": "^0.20.2", | ||
"minimist": "^1.2.8", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really like that these deps have to be at the root package level but it's happening because the shared esbuild.mjs file is at the root level rather than having an exact copy inside each package.
@thecrypticace thanks for fixing this up :) |
To be consistent with the defaults of the Tailwind V4 repo, I figured it might make sense to also migrate the intellisense extension to use
pnpm
as the default version manager.This was mostly motivated by me doing a clean
npm install
in the workspace root but that causes a lot of packages to be missing withinpackages/vscode-tailwindcss
(e.g. theconcurrently
module) so builds wouldn't just work. 😬