2020-06-13 11:03:08 +00:00
|
|
|
// node native scope
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
export {
|
2020-06-15 15:16:47 +00:00
|
|
|
fs,
|
|
|
|
path
|
2020-06-13 11:03:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// pushrocks scope
|
2020-06-15 15:16:47 +00:00
|
|
|
import * as smartfile from '@pushrocks/smartfile';
|
2020-06-13 11:03:08 +00:00
|
|
|
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
|
2020-06-15 15:16:47 +00:00
|
|
|
import * as smarttime from '@pushrocks/smarttime';
|
2020-06-13 11:03:08 +00:00
|
|
|
|
|
|
|
export {
|
2020-06-15 15:16:47 +00:00
|
|
|
smartfile,
|
|
|
|
smartlogInterfaces,
|
|
|
|
smarttime
|
2020-06-13 11:03:08 +00:00
|
|
|
};
|