Files
nocodb/scripts/downgradeSqlite.js
2024-05-09 22:18:19 +05:30

14 lines
532 B
JavaScript

const fs = require('fs')
const path = require('path');
const filePath = path.join(__dirname, '..', 'scripts','pkg-executable','package.json');
const nocodbSdkPackage = JSON.parse(fs.readFileSync(filePath, 'utf8'))
// downgrade sqlite3 to 5.1.6 until build related issues are resolved
// https://github.com/TryGhost/node-sqlite3/issues/1748
nocodbSdkPackage.overrides = nocodbSdkPackage.overrides || {};
nocodbSdkPackage.overrides.sqlite3 = "5.1.6"
fs.writeFileSync(filePath, JSON.stringify(nocodbSdkPackage, null, 2), 'utf8');