odin-default-js-exercises/node_modules/read-pkg-up/index.js

31 lines
581 B
JavaScript
Raw Normal View History

2017-12-15 18:56:14 +00:00
'use strict';
const path = require('path');
2017-12-15 18:56:14 +00:00
const findUp = require('find-up');
const readPkg = require('read-pkg');
module.exports = async options => {
const filePath = await findUp('package.json', options);
2017-12-15 18:56:14 +00:00
if (!filePath) {
return;
}
return {
packageJson: await readPkg({...options, cwd: path.dirname(filePath)}),
path: filePath
};
2017-12-15 18:56:14 +00:00
};
module.exports.sync = options => {
const filePath = findUp.sync('package.json', options);
2017-12-15 18:56:14 +00:00
if (!filePath) {
return;
2017-12-15 18:56:14 +00:00
}
return {
packageJson: readPkg.sync({...options, cwd: path.dirname(filePath)}),
path: filePath
2017-12-15 18:56:14 +00:00
};
};