mirror of
https://github.com/dbgate/dbgate
synced 2024-11-21 07:26:43 +00:00
This commit is contained in:
parent
6fdb20fc34
commit
c0595aec0a
@ -5,7 +5,7 @@ const volatilePackages = require('./common/volatilePackages');
|
||||
function adjustFile(file, isApp = false) {
|
||||
const json = JSON.parse(fs.readFileSync(file, { encoding: 'utf-8' }));
|
||||
|
||||
function processFile(packageFile) {
|
||||
function processPackageFile(packageFile) {
|
||||
const pluginJson = JSON.parse(fs.readFileSync(packageFile, { encoding: 'utf-8' }));
|
||||
for (const depkey of ['dependencies', 'optionalDependencies']) {
|
||||
for (const dependency of Object.keys(pluginJson[depkey] || {})) {
|
||||
@ -29,12 +29,12 @@ function adjustFile(file, isApp = false) {
|
||||
|
||||
for (const packageName of fs.readdirSync('plugins')) {
|
||||
if (!packageName.startsWith('dbgate-plugin-')) continue;
|
||||
processFile(path.join('plugins', packageName, 'package.json'));
|
||||
processPackageFile(path.join('plugins', packageName, 'package.json'));
|
||||
}
|
||||
|
||||
if (isApp) {
|
||||
// add volatile dependencies from api to app
|
||||
processFile(path.join('packages', 'api', 'package.json'));
|
||||
processPackageFile(path.join('packages', 'api', 'package.json'));
|
||||
}
|
||||
|
||||
if (process.platform != 'win32') {
|
||||
|
Loading…
Reference in New Issue
Block a user