Open
Description
Describe the Bug
The yarn equivalent for npm init wasm-app www
is `yarn create wasm-app www', but it doesn't work with this module.
Steps to Reproduce
mkdir blah
cd blah
yarn create wasm-app www
- See error
Expected Behavior
The www directory gets created like when I run npm init wasm-app www
.
Actual Behavior
Here's my output:
wt@XXXXXXX:~/projects/blah$ yarn create wasm-app www
yarn create v1.22.4
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Installed "[email protected]" with binaries:
- create-wasm-app
/bin/sh: 1: /home/wt/.yarn/bin/create-wasm-app: not found
error Command failed.
Exit code: 127
Command: /home/wt/.yarn/bin/create-wasm-app
Arguments: www
Directory: /home/wt/projects/blah
Output:
info Visit https://yarnpkg.com/en/docs/cli/create for documentation about this command.
Additional Context
I was following the project tutorial except that I wanted to use yarn.