2024-03-17 00:53:32 +01:00
|
|
|
// node native scope
|
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
path,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @push.rocks scope
|
|
|
|
|
import * as smartarchive from '@push.rocks/smartarchive';
|
2025-12-02 11:27:35 +00:00
|
|
|
import * as smartfs from '@push.rocks/smartfs';
|
2024-03-17 00:53:32 +01:00
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
2025-12-02 11:27:35 +00:00
|
|
|
import * as smartshell from '@push.rocks/smartshell';
|
2024-03-17 21:24:25 +01:00
|
|
|
import * as smartunique from '@push.rocks/smartunique';
|
2024-03-17 00:53:32 +01:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
smartarchive,
|
2025-12-02 11:27:35 +00:00
|
|
|
smartfs,
|
2024-03-17 00:53:32 +01:00
|
|
|
smartpath,
|
2025-12-02 11:27:35 +00:00
|
|
|
smartshell,
|
2024-03-17 21:24:25 +01:00
|
|
|
smartunique,
|
2025-12-02 11:39:46 +00:00
|
|
|
}
|