fix(mongodb): modernize MongoDB dump handling and filesystem integration

This commit is contained in:
2026-05-01 15:32:05 +00:00
parent 7ee4a48ee2
commit a4950ef358
15 changed files with 2671 additions and 13638 deletions
+10 -12
View File
@@ -2,34 +2,32 @@
import * as path from 'path';
export {
path
}
path,
};
// pushrocks scope
import * as lik from '@push.rocks/lik';
import * as smartfile from '@push.rocks/smartfile';
import * as smartjson from '@push.rocks/smartjson';
import * as smartfs from '@push.rocks/smartfs';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
export {
lik,
smartfile,
smartjson,
smartfs,
smartpath,
smartpromise
}
smartpromise,
};
// tsclass
import * as tsclass from '@tsclass/tsclass';
export {
tsclass
}
tsclass,
};
// third party scope
import * as mongodb from 'mongodb';
export {
mongodb
}
mongodb,
};