33 lines
1015 B
TypeScript
33 lines
1015 B
TypeScript
// push.rocks scope
|
|
import * as npmextra from '@push.rocks/npmextra';
|
|
import * as path from 'path';
|
|
import * as projectinfo from '@push.rocks/projectinfo';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
import * as qenv from '@push.rocks/qenv';
|
|
import * as smartcli from '@push.rocks/smartcli';
|
|
import { SmartFs, SmartFsProviderNode } from '@push.rocks/smartfs';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
|
|
import * as smartlogSouceOra from '@push.rocks/smartlog-source-ora';
|
|
import * as smartopen from '@push.rocks/smartopen';
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
import * as smartstring from '@push.rocks/smartstring';
|
|
|
|
// Create smartfs instance
|
|
export const smartfs = new SmartFs(new SmartFsProviderNode());
|
|
|
|
export {
|
|
npmextra,
|
|
path,
|
|
projectinfo,
|
|
smartpromise,
|
|
qenv,
|
|
smartcli,
|
|
smartlog,
|
|
smartlogDestinationLocal,
|
|
smartlogSouceOra,
|
|
smartopen,
|
|
smartshell,
|
|
smartstring
|
|
};
|