15 lines
540 B
TypeScript
15 lines
540 B
TypeScript
// node native scope
|
|
import * as path from 'path';
|
|
export { path };
|
|
|
|
// @push.rocks scope
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartcli from '@push.rocks/smartcli';
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartnpm from '@push.rocks/smartnpm';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
|
|
export { smartfile, smartcli, smartdelay, smartlog, smartnpm, smartpath, smartshell };
|