24 lines
597 B
TypeScript
24 lines
597 B
TypeScript
// native scope
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @push.rocks scope
|
|
import * as smartarchive from '@push.rocks/smartarchive';
|
|
import * as smartbucket from '@push.rocks/smartbucket';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartrequest from '@push.rocks/smartrequest';
|
|
|
|
export { smartarchive, smartbucket, smartlog, smartpath, smartrequest };
|
|
|
|
// @tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|
|
|
|
// third party
|
|
import { minimatch } from 'minimatch';
|
|
|
|
export { minimatch };
|