wallet-core/node_modules/has-yarn/readme.md
2017-05-28 00:40:43 +02:00

773 B

has-yarn Build Status

Check if a project is using Yarn

Useful for tools that needs to know whether to use yarn or npm to install dependencies.

Install

$ npm install --save has-yarn

Usage

.
├── foo
│   └── package.json
└── bar
    ├── package.json
    └── yarn.lock
const hasYarn = require('has-yarn');

hasYarn('foo');
//=> false

hasYarn('bar');
//=> true

API

hasYarn([cwd])

Returns a boolean.

cwd

Type: string
Default: process.cwd()

Current working directory.

License

MIT © Sindre Sorhus