2024-10-21 12:16:09 +02:00
|
|
|
// node native scope
|
|
|
|
import * as path from 'path';
|
2024-11-05 00:34:56 +01:00
|
|
|
export { path };
|
2024-10-21 12:16:09 +02:00
|
|
|
|
|
|
|
// @push.rocks scope
|
|
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
|
|
import * as smartcli from '@push.rocks/smartcli';
|
2024-10-28 15:57:31 +01:00
|
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
2024-10-21 12:16:09 +02:00
|
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
|
|
import * as smartnpm from '@push.rocks/smartnpm';
|
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
2024-10-21 13:21:47 +02:00
|
|
|
import * as smartshell from '@push.rocks/smartshell';
|
2024-10-21 12:16:09 +02:00
|
|
|
|
2024-10-28 15:57:31 +01:00
|
|
|
export { smartfile, smartcli, smartdelay, smartlog, smartnpm, smartpath, smartshell };
|