Using the bun create [..]
command, I could create a react
and a next
project. It was straightforward following the instructions on the bun git repository (update: most instructions can be found at bun.sh).
But I could not get it to work with quasar
/vue
.
I could successfully install quasar
with bun:
bun install -g @quasar/cli
But when I tried to create a quasar project:
quasar create [..]
I get a message like:
/usr/bin/env: ‘node’: Permission denied
/usr/bin/env: ‘node’: No such file or directory
It looks like quasar
is trying to use the node
executable instead of bun
.
Any ideas how can I make it works with quasar
/vue
?
bun --bun run quasar <cmd>
is what I was looking for! worked for me onbun 1.0.3
and@quasar/app-vite 1.6.2
, specifically tried withquasar
commadsadd mode bex
anddescribe QIcon
– Aid