2024-02-09 18:21:33 +01:00
|
|
|
// node native
|
2018-09-17 22:32:31 +02:00
|
|
|
import * as fs from 'fs-extra';
|
|
|
|
import * as path from 'path';
|
2024-02-09 18:21:33 +01:00
|
|
|
|
|
|
|
export { fs, path };
|
|
|
|
|
|
|
|
// @push.rocks scope
|
|
|
|
import * as smartjson from '@push.rocks/smartjson';
|
2023-07-27 15:52:01 +02:00
|
|
|
import * as smartfile from '@push.rocks/smartfile';
|
2024-02-09 18:21:33 +01:00
|
|
|
import * as smartcrypto from '@push.rocks/smartcrypto';
|
2023-07-27 15:52:01 +02:00
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
2024-02-09 18:21:33 +01:00
|
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
import * as smartshell from '@push.rocks/smartshell';
|
2023-07-27 15:52:01 +02:00
|
|
|
import * as smartstring from '@push.rocks/smartstring';
|
2016-11-23 12:38:38 +01:00
|
|
|
|
2024-02-09 18:21:33 +01:00
|
|
|
export {
|
|
|
|
smartjson,
|
|
|
|
smartfile,
|
|
|
|
smartcrypto,
|
|
|
|
smartpath,
|
|
|
|
smartpromise,
|
|
|
|
smartshell,
|
|
|
|
smartstring,
|
|
|
|
};
|
|
|
|
|
|
|
|
// third party scope
|
|
|
|
import * as minimatch from 'minimatch';
|
|
|
|
import * as nodeSsh from 'node-ssh';
|
|
|
|
|
|
|
|
export { minimatch, nodeSsh };
|