2019-05-16 18:48:45 +02:00
|
|
|
// node native
|
|
|
|
|
import * as childProcess from 'child_process';
|
|
|
|
|
|
|
|
|
|
export { childProcess };
|
|
|
|
|
|
|
|
|
|
// pushrocks scope
|
2023-09-11 10:29:01 +02:00
|
|
|
import * as lik from '@push.rocks/lik';
|
|
|
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
2024-04-18 13:26:02 +02:00
|
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
2019-05-16 18:48:45 +02:00
|
|
|
|
2024-04-18 13:26:02 +02:00
|
|
|
export { lik, smartdelay, smartpromise };
|
|
|
|
|
|
|
|
|
|
// third party scope
|
|
|
|
|
import * as treeKill from 'tree-kill';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
treeKill
|
|
|
|
|
}
|