Skip to content

Commit 647d3c0

Browse files
committed
Remove non-existent option in our package-up utility
1 parent 9d0fb3b commit 647d3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils/package-up.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const { fileURLToPath } = require('url');
2121
* @returns {string|undefined} The path to the nearest package.json file or undefined if not found.
2222
*/
2323
module.exports = function({ cwd }) {
24-
return findUpSync('package.json', { cwd, type: 'file' });
24+
return findUpSync('package.json', { cwd });
2525
};
2626

2727
/**

0 commit comments

Comments
 (0)