Note
CRA is dead. You can check alternatives to CRA in the official document such as Next.js, Remix and Gatsby. You can also use Vite t...
For further actions, you may consider blocking this person and/or reporting abuse
pnpm create react-app pnpm-cra --template typescript
is still installing packages with yarn. Isn't there a direct command?The command is used to make a project with
CRA
.You need to install packages using
pnpm
to change the package manager, then you don't need a yarn dependency file if you don't plan to use it.Thanks for the heads up about CRA's death 😂. I used Vite.
I do Vite as well, Good choice man 👍
Warning: create-react-app is deprecated!
I had a terrible time trying to get past that "toBeInTheDocument" error message in late 2023 only to realize I shouldn't be using create-react-app anyway.
Yes, you're right.
React
officially don't recommendCRA
anymore.Updated the post. Thanks for your comment.
Very useful 💖
I'm glad it helped :)
Thank you so much!!!!
How can I change my shorter alias from "pnpm start" to "pn"?
The tutorial with Powershell for Windows in official pnpm website doesn't working...
I'm glad, it helped :)
pnpm.io/installation#using-a-short...
In Powershell, type this for registering an alias.
Then run a command
pn start
Hello!
How do you think, why
pnpm
fails withoutpnpm add -D @types/testing-library__jest-dom
?I think they're supposed to add the type package or include it in
@testing-library
. because, when I set up cra with yarn claasicthere is
testing-library__jest-domin
node_modules/@typesand it works well, I'm not sure tho.
pnpm`. I'll make an issue about it in github. After I get a response from them, I'll re-comment it to youFrom what I know, they don't officially support
Any update?
I did not face it in the dev env while running
pnpm start
but I faced it in github actions. IDK why but I am trying different solution. Maybe I'll update you later on