55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
// node native
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
|
|
export { fs, path };
|
|
|
|
// @push.rocks scope
|
|
import * as consolecolor from '@push.rocks/consolecolor';
|
|
import * as smartbrowser from '@push.rocks/smartbrowser';
|
|
import * as smartserve from '@push.rocks/smartserve';
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartfs from '@push.rocks/smartfs';
|
|
const smartfsInstance = new smartfs.SmartFs(new smartfs.SmartFsProviderNode());
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartnetwork from '@push.rocks/smartnetwork';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
import * as smartwatch from '@push.rocks/smartwatch';
|
|
import * as tapbundle from '../dist_ts_tapbundle/index.js';
|
|
|
|
export {
|
|
consolecolor,
|
|
smartbrowser,
|
|
smartserve,
|
|
smartdelay,
|
|
smartfile,
|
|
smartfs,
|
|
smartfsInstance,
|
|
smartlog,
|
|
smartnetwork,
|
|
smartpromise,
|
|
smartshell,
|
|
smartwatch,
|
|
tapbundle,
|
|
};
|
|
|
|
// @git.zone scope
|
|
import * as tsbundle from '@git.zone/tsbundle';
|
|
import * as tsrun from '@git.zone/tsrun';
|
|
|
|
export { tsbundle, tsrun };
|
|
|
|
// sindresorhus
|
|
import figures from 'figures';
|
|
|
|
export { figures };
|
|
|
|
// third party
|
|
import * as ws from 'ws';
|
|
|
|
export {
|
|
ws
|
|
}
|