2019-01-09 12:15:28 +01:00
|
|
|
// native
|
2025-11-27 13:14:58 +00:00
|
|
|
import * as path from 'node:path';
|
2019-01-09 12:15:28 +01:00
|
|
|
|
|
|
|
|
export { path };
|
|
|
|
|
|
2025-11-27 13:14:58 +00:00
|
|
|
// @push.rocks scope
|
|
|
|
|
import * as lik from '@push.rocks/lik';
|
|
|
|
|
import * as smartfs from '@push.rocks/smartfs';
|
|
|
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
|
|
|
import * as smartstring from '@push.rocks/smartstring';
|
|
|
|
|
import * as smartunique from '@push.rocks/smartunique';
|
2018-08-10 23:10:48 +02:00
|
|
|
|
2025-11-27 13:14:58 +00:00
|
|
|
export { lik, smartfs, smartlog, smartpath, smartpromise, smartshell, smartstring, smartunique };
|
|
|
|
|
|
|
|
|
|
// Shared filesystem instance
|
|
|
|
|
const fsProvider = new smartfs.SmartFsProviderNode();
|
|
|
|
|
export const fs = new smartfs.SmartFs(fsProvider);
|
2019-04-10 19:03:17 +02:00
|
|
|
|
|
|
|
|
// thirdparty scope
|
2023-07-26 16:05:53 +02:00
|
|
|
import * as selfsigned from 'selfsigned';
|
2019-04-10 19:03:17 +02:00
|
|
|
|
2019-08-20 22:30:31 +02:00
|
|
|
export { selfsigned };
|