mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
17 lines
400 B
JavaScript
17 lines
400 B
JavaScript
const { join } = require('path');
|
|
const getCwd = require('./getCwd');
|
|
|
|
module.exports = (dir) => {
|
|
try {
|
|
// eslint-disable-next-line
|
|
return require(join(getCwd(), 'package.json'));
|
|
} catch (error) {
|
|
try {
|
|
// eslint-disable-next-line
|
|
return require(join(dir, 'package.json'));
|
|
} catch (err) {
|
|
return null;
|
|
}
|
|
}
|
|
};
|