2021-11-29 20:26:59 +01:00
|
|
|
// node native
|
2021-12-01 02:04:21 +01:00
|
|
|
import * as fs from 'fs';
|
2021-11-29 20:26:59 +01:00
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
export {
|
2021-12-01 02:04:21 +01:00
|
|
|
fs,
|
2021-11-29 20:26:59 +01:00
|
|
|
path
|
|
|
|
}
|
|
|
|
|
|
|
|
// @pushrocks scope
|
2024-01-28 01:18:39 +01:00
|
|
|
import * as lik from '@push.rocks/lik';
|
|
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
import * as smartrx from '@push.rocks/smartrx';
|
2021-11-29 20:26:59 +01:00
|
|
|
|
|
|
|
export {
|
|
|
|
lik,
|
|
|
|
smartpromise,
|
|
|
|
smartrx
|
|
|
|
}
|
|
|
|
|
|
|
|
// thirdparty scope
|
2025-06-26 23:15:42 +00:00
|
|
|
import * as chokidar from 'chokidar';
|
|
|
|
import picomatch from 'picomatch';
|
2021-11-29 20:26:59 +01:00
|
|
|
|
|
|
|
export {
|
2025-06-26 23:15:42 +00:00
|
|
|
chokidar,
|
|
|
|
picomatch,
|
2024-01-28 01:18:39 +01:00
|
|
|
}
|