fbjs assumes in various places yarn is installed but doesn't declare it as a dependency or call it out in the README. To name a few:
- Build scripts -
|
"fbjs:build": "cd packages/fbjs && yarn && yarn run build", |
|
"fbjs:test": "cd packages/fbjs && yarn && yarn run test", |
|
"fbjs:flow": "cd packages/fbjs && yarn && yarn run flow", |
|
"preset:test": "cd packages/babel-preset-fbjs && yarn && yarn run test", |
|
"signedsource:test": "cd packages/signedsource && yarn && yarn run test" |
fbjs prepublish script -
|
"prepublish": "yarn run build", |
check-dependencies Gulp plugin -
etc.
I believe it would be useful to call out fbjs depends on Facebook's omakase stack in the README at a minimum.