docker/ts/docker.plugins.ts

37 lines
867 B
TypeScript
Raw Normal View History

2019-09-13 16:15:45 +00:00
// node native path
import * as path from 'path';
2019-09-13 16:20:12 +00:00
export { path };
2019-09-13 16:15:45 +00:00
2019-01-09 23:24:35 +00:00
// @pushrocks scope
import * as lik from '@pushrocks/lik';
2019-09-13 16:15:45 +00:00
import * as smartfile from '@pushrocks/smartfile';
2019-09-12 12:45:36 +00:00
import * as smartjson from '@pushrocks/smartjson';
2019-01-09 23:24:35 +00:00
import * as smartlog from '@pushrocks/smartlog';
2019-09-08 14:34:26 +00:00
import * as smartnetwork from '@pushrocks/smartnetwork';
2019-09-13 16:15:45 +00:00
import * as smartpath from '@pushrocks/smartpath';
2019-01-09 23:24:35 +00:00
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrequest from '@pushrocks/smartrequest';
2019-09-13 16:15:45 +00:00
import * as smartstring from '@pushrocks/smartstring';
2019-09-11 18:25:45 +00:00
import * as smartversion from '@pushrocks/smartversion';
2019-01-09 23:24:35 +00:00
2019-08-15 16:50:13 +00:00
smartlog.defaultLogger.enableConsole();
2019-09-13 16:20:12 +00:00
export {
lik,
smartfile,
smartjson,
smartlog,
smartnetwork,
smartpath,
smartpromise,
smartrequest,
smartstring,
smartversion
};
2019-01-09 23:24:35 +00:00
// third party
import * as rxjs from 'rxjs';
2019-01-09 23:28:12 +00:00
export { rxjs };