|
|
vor 5 Jahren | |
|---|---|---|
| .. | ||
| index.d.ts | vor 5 Jahren | |
| index.js | vor 5 Jahren | |
| license | vor 5 Jahren | |
| package.json | vor 5 Jahren | |
| readme.md | vor 5 Jahren | |
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');
//=> true
Returns a boolean of whether the project uses Yarn.
Type: string
Default: process.cwd()
Current working directory.
MIT © Sindre Sorhus