| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Check if a project is using Yarn
Useful for tools that needs to know whether to use yarn or npm to install dependencies.
It checks if a yarn.lock file is present in the working directory.
$ npm install has-yarn
.
├── foo
│ └── package.json
└── bar
├── package.json
└── yarn.lock
const hasYarn = require('has-yarn');
hasYarn('foo');
//=> false
hasYarn('bar');
//=> trueReturns a boolean of whether the project uses Yarn.
Type: string
Default: process.cwd()
Current working directory.
MIT © Sindre Sorhus
| Back | FazBrowse Home | New Git URL |