Files
tsdeno/ts/plugins.ts

22 lines
570 B
TypeScript

// node native
import * as path from 'path';
import * as fs from 'fs/promises';
export { path, fs };
// @push.rocks scope
import * as smartcli from '@push.rocks/smartcli';
import * as smartfile from '@push.rocks/smartfile';
import * as smartlog from '@push.rocks/smartlog';
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
import * as smartpath from '@push.rocks/smartpath';
import * as smartshell from '@push.rocks/smartshell';
export {
smartcli,
smartfile,
smartlog,
smartlogDestinationLocal,
smartpath,
smartshell,
};