UNPKG
has-yarn
Version:
latest (4.0.0)
4.0.0
3.0.0
2.1.0
2.0.0
1.0.0
Check if a project is using Yarn
github.com/sindresorhus/has-yarn
sindresorhus/has-yarn
has-yarn
/
index.js
7 lines
(5 loc)
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
process
from
'node:process'
;
import
{findUpSync}
from
'find-up-simple'
;
export
default
function
hasYarn
(
cwd = process.cwd()
) {
return
Boolean
(
findUpSync
(
'yarn.lock'
, {cwd})); }