24 lines
604 B
TypeScript
24 lines
604 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// pushrocks 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 smartpromise from '@push.rocks/smartpromise';
|
|
import * as smartspawn from '@push.rocks/smartspawn';
|
|
|
|
export {
|
|
smartcli,
|
|
smartfile,
|
|
smartlog,
|
|
smartlogDestinationLocal,
|
|
smartpath,
|
|
smartpromise,
|
|
smartspawn,
|
|
};
|