38 lines
958 B
TypeScript
38 lines
958 B
TypeScript
// node native scope
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
|
|
export { fs, path };
|
|
|
|
// @pushrocks scope
|
|
import * as lik from '@pushrocks/lik';
|
|
import * as smartfileInterfaces from '@pushrocks/smartfile-interfaces';
|
|
import * as smartdelay from '@pushrocks/smartdelay';
|
|
import * as smarthash from '@pushrocks/smarthash';
|
|
import * as smartjson from '@pushrocks/smartjson';
|
|
import * as smartmime from '@pushrocks/smartmime';
|
|
import * as smartpath from '@pushrocks/smartpath';
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
import * as smartrequest from '@pushrocks/smartrequest';
|
|
import * as smartstream from '@pushrocks/smartstream';
|
|
|
|
export {
|
|
lik,
|
|
smartfileInterfaces,
|
|
smartdelay,
|
|
smarthash,
|
|
smartjson,
|
|
smartmime,
|
|
smartpath,
|
|
smartpromise,
|
|
smartrequest,
|
|
smartstream,
|
|
};
|
|
|
|
// third party scope
|
|
import fsExtra from 'fs-extra';
|
|
import * as glob from 'glob';
|
|
import yaml from 'js-yaml';
|
|
|
|
export { fsExtra, glob, yaml };
|