2023-11-25 18:11:31 +01:00
|
|
|
// node native scope
|
2026-05-01 22:17:09 +00:00
|
|
|
import * as path from 'node:path';
|
2023-11-25 18:11:31 +01:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
path
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// @push.rocks scope
|
|
|
|
|
import * as smartevent from '@push.rocks/smartevent';
|
|
|
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
|
|
|
import * as smartstream from '@push.rocks/smartstream';
|
2026-05-01 22:17:09 +00:00
|
|
|
import { minimatch } from 'minimatch';
|
2017-04-29 01:39:14 +02:00
|
|
|
|
2026-05-01 22:17:09 +00:00
|
|
|
export { smartevent, smartfile, smartstream, minimatch };
|