plugin version

This commit is contained in:
Jan Prochazka
2021-04-17 09:24:46 +02:00
parent 89a3798d56
commit a98380a941
17 changed files with 47 additions and 47 deletions

View File

@@ -4,7 +4,7 @@ const path = require('path');
function changeDependencies(deps, version) {
if (!deps) return;
for (const key of Object.keys(deps)) {
if (key.startsWith('dbgate-')) deps[key] = `^${version}`;
if (key.startsWith('dbgate-') && key != 'dbgate-plugin-tools') deps[key] = `^${version}`;
}
}