tsbundle/ts/plugins.ts

24 lines
604 B
TypeScript
Raw Normal View History

2022-03-15 23:21:05 +00:00
// node native
import * as path from 'path';
export { path };
// pushrocks scope
2023-08-26 13:08:23 +00:00
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 smartpromise from '@push.rocks/smartpromise';
import * as smartspawn from '@push.rocks/smartspawn';
2022-03-15 23:21:05 +00:00
export {
smartcli,
smartfile,
smartlog,
smartlogDestinationLocal,
smartpath,
smartpromise,
smartspawn,
};