oracledb added to native dependencies

This commit is contained in:
Jan Prochazka
2022-11-20 17:07:21 +01:00
parent a7a8ea053b
commit 896cc21386
5 changed files with 15 additions and 0 deletions

View File

@@ -5,6 +5,9 @@ function adjustFile(file) {
if (process.platform != 'win32') {
delete json.optionalDependencies.msnodesqlv8;
}
if (process.arch == 'arm64') {
delete json.optionalDependencies.oracledb;
}
fs.writeFileSync(file, JSON.stringify(json, null, 2), 'utf-8');
}