21 lines
673 B
TypeScript
21 lines
673 B
TypeScript
// node native modules
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @pushrocks scope
|
|
import * as consolecolor from '@pushrocks/consolecolor';
|
|
import * as levelcache from '@pushrocks/levelcache';
|
|
import * as smartarchive from '@pushrocks/smartarchive';
|
|
import * as smartfile from '@pushrocks/smartfile';
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
import * as smartrequest from '@pushrocks/smartrequest';
|
|
import * as smartversion from '@pushrocks/smartversion';
|
|
|
|
export { consolecolor, levelcache, smartarchive, smartfile, smartpromise, smartrequest, smartversion };
|
|
|
|
// third party scope
|
|
import packageJson from 'package-json';
|
|
|
|
export { packageJson };
|