22 lines
956 B
TypeScript
22 lines
956 B
TypeScript
// node native scope
|
|
import * as path from 'path';
|
|
export { path };
|
|
|
|
// @push.rocks scope
|
|
import * as consolecolor from '@push.rocks/consolecolor';
|
|
import * as npmextra from '@push.rocks/npmextra';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import { SmartFs, SmartFsProviderNode } from '@push.rocks/smartfs';
|
|
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 smartrequest from '@push.rocks/smartrequest';
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
|
|
// Create a pre-configured SmartFs instance for Node.js filesystem operations
|
|
const smartfs = new SmartFs(new SmartFsProviderNode());
|
|
|
|
export { consolecolor, npmextra, smartfile, smartfs, smartcli, smartdelay, smartlog, smartnpm, smartpath, smartrequest, smartshell };
|