I don't see the value of having this npm script alias. Having this script alias make it difficult to format our codebase. Instead of yarn prettier --write filename.js we need to run
./node_modules/.bin/prettier --write filename.js which more verbose.
I don't see the value of having this npm script alias. Having this script alias make it difficult to format our codebase. Instead of
yarn prettier --write filename.js
we need to run./node_modules/.bin/prettier --write filename.js
which more verbose.