2024-06-17 16:01:35 +02:00
|
|
|
// plugins.ts
|
|
|
|
|
2019-10-16 18:12:18 +02:00
|
|
|
// node native
|
|
|
|
import * as path from 'path';
|
2024-05-05 19:52:50 +02:00
|
|
|
import * as stream from 'stream';
|
2019-10-16 18:12:18 +02:00
|
|
|
|
2024-05-05 19:52:50 +02:00
|
|
|
export { path, stream };
|
2019-10-16 18:12:18 +02:00
|
|
|
|
2024-02-10 04:36:34 +01:00
|
|
|
// @push.rocks scope
|
2024-05-21 01:22:21 +02:00
|
|
|
import * as smartmime from '@push.rocks/smartmime';
|
2023-11-03 01:36:11 +01:00
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
import * as smartrx from '@push.rocks/smartrx';
|
|
|
|
import * as smartstream from '@push.rocks/smartstream';
|
2024-06-10 16:47:20 +02:00
|
|
|
import * as smartstring from '@push.rocks/smartstring';
|
2024-06-03 21:35:08 +02:00
|
|
|
import * as smartunique from '@push.rocks/smartunique';
|
2018-09-14 18:07:20 +02:00
|
|
|
|
2024-06-10 16:47:20 +02:00
|
|
|
export { smartmime, smartpath, smartpromise, smartrx, smartstream, smartstring, smartunique };
|
2019-07-07 10:48:24 +02:00
|
|
|
|
2024-02-10 04:36:34 +01:00
|
|
|
// @tsclass
|
|
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
|
|
|
|
export {
|
|
|
|
tsclass,
|
|
|
|
}
|
|
|
|
|
2019-07-07 10:48:24 +02:00
|
|
|
// third party scope
|
2024-06-17 16:01:35 +02:00
|
|
|
import * as s3 from '@aws-sdk/client-s3';
|
2019-10-14 23:53:41 +02:00
|
|
|
|
2024-06-17 16:01:35 +02:00
|
|
|
export {
|
|
|
|
s3,
|
|
|
|
}
|