mirror of
https://github.com/dbgate/dbgate
synced 2024-11-21 15:28:20 +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) {
|
function adjustFile(file, isApp = false) {
|
||||||
const json = JSON.parse(fs.readFileSync(file, { encoding: 'utf-8' }));
|
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' }));
|
const pluginJson = JSON.parse(fs.readFileSync(packageFile, { encoding: 'utf-8' }));
|
||||||
for (const depkey of ['dependencies', 'optionalDependencies']) {
|
for (const depkey of ['dependencies', 'optionalDependencies']) {
|
||||||
for (const dependency of Object.keys(pluginJson[depkey] || {})) {
|
for (const dependency of Object.keys(pluginJson[depkey] || {})) {
|
||||||
@ -29,12 +29,12 @@ function adjustFile(file, isApp = false) {
|
|||||||
|
|
||||||
for (const packageName of fs.readdirSync('plugins')) {
|
for (const packageName of fs.readdirSync('plugins')) {
|
||||||
if (!packageName.startsWith('dbgate-plugin-')) continue;
|
if (!packageName.startsWith('dbgate-plugin-')) continue;
|
||||||
processFile(path.join('plugins', packageName, 'package.json'));
|
processPackageFile(path.join('plugins', packageName, 'package.json'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isApp) {
|
if (isApp) {
|
||||||
// add volatile dependencies from api to app
|
// 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') {
|
if (process.platform != 'win32') {
|
||||||
|
Loading…
Reference in New Issue
Block a user