38 lines
869 B
TypeScript
38 lines
869 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @pushrocks scope
|
|
import * as consolecolor from '@pushrocks/consolecolor';
|
|
import * as smartbrowser from '@pushrocks/smartbrowser';
|
|
import * as smartexpress from '@pushrocks/smartexpress';
|
|
import * as smartdelay from '@pushrocks/smartdelay';
|
|
import * as smartfile from '@pushrocks/smartfile';
|
|
import * as smartlog from '@pushrocks/smartlog';
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
import * as smartshell from '@pushrocks/smartshell';
|
|
import * as tapbundle from '@pushrocks/tapbundle';
|
|
|
|
export {
|
|
consolecolor,
|
|
smartbrowser,
|
|
smartexpress,
|
|
smartdelay,
|
|
smartfile,
|
|
smartlog,
|
|
smartpromise,
|
|
smartshell,
|
|
tapbundle,
|
|
};
|
|
|
|
// @gitzone scope
|
|
import * as tsbundle from '@gitzone/tsbundle';
|
|
|
|
export { tsbundle };
|
|
|
|
// sindresorhus
|
|
import figures from 'figures';
|
|
|
|
export { figures };
|