Skip to content

0.2.0

Compare
Choose a tag to compare
@dsifford dsifford released this 26 Apr 23:45
· 124 commits to master since this release

Minor

If scripts are found in a package.json file in the current directory, add them as first-level autocompletion commands.

Example:

package.json

{
    "scripts": {
	"foo": "echo bar"
    }
}

yarn f<tab> will complete to yarn foo