christian 4571a14169 android fix | hace 3 años | |
---|---|---|
.. | ||
index.d.ts | hace 3 años | |
index.js | hace 3 años | |
license | hace 3 años | |
package.json | hace 3 años | |
readme.md | hace 3 años |
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