smartarchive/ts/smartarchive.plugins.ts

22 lines
655 B
TypeScript
Raw Permalink Normal View History

2020-03-13 20:22:56 +00:00
// node native scope
import path from 'path';
export { path };
// @pushrocks scope
import * as smartfile from '@pushrocks/smartfile';
import * as smartpath from '@pushrocks/smartpath';
2020-03-16 14:38:17 +00:00
import * as smartrequest from '@pushrocks/smartrequest';
import * as smartunique from '@pushrocks/smartunique';
2021-04-19 11:49:25 +00:00
import * as streamfunction from '@pushrocks/streamfunction';
import * as smartrx from '@pushrocks/smartrx';
2020-03-13 20:22:56 +00:00
2021-04-19 11:49:25 +00:00
export { smartfile, smartpath, smartrequest, smartunique, streamfunction, smartrx };
2020-03-13 20:22:56 +00:00
// third party scope
2021-04-19 11:49:25 +00:00
import gunzipMaybe from 'gunzip-maybe';
2020-03-13 20:22:56 +00:00
import tar from 'tar';
2021-04-19 11:49:25 +00:00
import tarStream from 'tar-stream';
2020-03-13 20:22:56 +00:00
2021-04-19 11:49:25 +00:00
export { gunzipMaybe, tar, tarStream };