You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The document outlining how to develope webpacker side-by-side with an app uses `yalc` to "build" and link the package to the test app's `node_modules`. It mentions using `yarn link` to link the packages together, however I have yet to get it to work.
```bash
$ yarn link @rails/webpacker
yarn link v1.22.5
error No registered package found called "@rails/webpacker".
info Visit https://yarnpkg.com/en/docs/cli/link for documentation about this command.
```
I am able to get it to work with `yalc link`, however.
```bash
$ yalc link @rails/webpacker
Package @rails/[email protected] linked ==> /home/user/work/testapp/node_modules/@rails/webpacker
```
Unless I'm doing something very wrong with the other steps, I am running under the assumption that this was a mistype in the document and yalc is the correct command to use to link.
I updated the document accordingly.
0 commit comments