Files
smartdeno/ts/plugins.ts

22 lines
442 B
TypeScript
Raw Permalink Normal View History

2024-03-17 00:53:32 +01:00
// node native scope
import * as path from 'path';
export {
path,
}
// @push.rocks scope
import * as smartarchive from '@push.rocks/smartarchive';
import * as smartfs from '@push.rocks/smartfs';
2024-03-17 00:53:32 +01:00
import * as smartpath from '@push.rocks/smartpath';
import * as smartshell from '@push.rocks/smartshell';
2024-03-17 21:24:25 +01:00
import * as smartunique from '@push.rocks/smartunique';
2024-03-17 00:53:32 +01:00
export {
smartarchive,
smartfs,
2024-03-17 00:53:32 +01:00
smartpath,
smartshell,
2024-03-17 21:24:25 +01:00
smartunique,
}