I am trying to run the preact create
command using Yarn. It's simple to run preact create ..... .....
or npx preact create ... ....
. It works fine and both of the commands use npm. But I am trying to run the command using Yarn. I have tried the following commands but nothing works. The error says "couldn't find a package.json file in path".
yarn preact create .... ....
yarn dlx preact create .... ....
yarn preact-cli create .... ....
yarn dlx preact-cli create .... ....
So, what should I do to run the command using Yarn. One alternative maybe is running the command using npm and then running yarn install and then running npm uninstall. But what's the actual way?
preact create ...... ...... --yarn
and it works fine. Thoughpreact create
isn't an alternative to npx. – Grison