Closed rmtsrc closed 4 years ago
Pressing yarn run <tab> <tab> does not list commands that have a : in their name. For example a package.json with the following scripts does not display the start:dev and test:watch commands.
yarn run <tab> <tab>
:
package.json
scripts
start:dev
test:watch
{ "scripts": { "start": "node .", "start:dev": "webpack-dev-server", "test": "jest", "test:watch": "yarn test --watch", } }
Sorry for delay! This needs reproducing.
I can't reproduce. It works on my machine:
Pressing
yarn run <tab> <tab>
does not list commands that have a:
in their name. For example apackage.json
with the followingscripts
does not display thestart:dev
andtest:watch
commands.