sombra 0.3.2

High-performance graph database with ACID transactions, single-file storage, and bindings for Rust, TypeScript, and Python
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
const fs = require('fs');
const path = require('path');

const indexPath = path.join(__dirname, '..', 'index.js');

if (!fs.existsSync(indexPath)) {
  console.log('⚠ index.js not found, skipping export fixes');
  process.exit(0);
}

let content = fs.readFileSync(indexPath, 'utf8');

console.log('✓ Fixed index.js exports');