forked from ard/ruoyi-api

aijinhui
2023-11-22 a2ab48f60c56611cee0d57634706c71ef08b2f8d
1
2
3
4
5
6
7
8
9
10
const fs = require('fs')
const path = require('path')
const readPkg = require('read-pkg')
 
exports.resolvePkg = function (context) {
  if (fs.existsSync(path.join(context, 'package.json'))) {
    return readPkg.sync({ cwd: context })
  }
  return {}
}