diff options
Diffstat (limited to 'node_modules/has-yarn/index.js')
-rw-r--r-- | node_modules/has-yarn/index.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/node_modules/has-yarn/index.js b/node_modules/has-yarn/index.js deleted file mode 100644 index a1f4eed..0000000 --- a/node_modules/has-yarn/index.js +++ /dev/null @@ -1,9 +0,0 @@ -'use strict'; -const path = require('path'); -const fs = require('fs'); - -const hasYarn = (cwd = process.cwd()) => fs.existsSync(path.resolve(cwd, 'yarn.lock')); - -module.exports = hasYarn; -// TODO: Remove this for the next major release -module.exports.default = hasYarn; |