2019-07-04 14:56:37 +00:00
|
|
|
// node native scope
|
|
|
|
import crypto from 'crypto';
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
|
|
|
import * as stream from 'stream';
|
|
|
|
|
2019-11-21 14:20:57 +00:00
|
|
|
export { crypto, fs, path, stream };
|
2019-07-04 14:56:37 +00:00
|
|
|
|
|
|
|
// pushrocks scope
|
|
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
|
|
import * as smartjson from '@pushrocks/smartjson';
|
|
|
|
|
2019-11-21 14:20:57 +00:00
|
|
|
export { smartpromise, smartjson };
|
2019-07-04 14:56:37 +00:00
|
|
|
|
|
|
|
// thirdparty scope
|
|
|
|
import through2 from 'through2';
|
|
|
|
|
2019-11-21 14:20:57 +00:00
|
|
|
export { through2 };
|