smartfile/ts/smartfile.plugins.ts

38 lines
953 B
TypeScript
Raw Normal View History

2019-09-27 09:00:17 +00:00
// node native scope
import * as fs from 'fs';
import * as path from 'path';
2019-09-29 14:43:31 +00:00
export { fs, path };
2019-09-27 09:00:17 +00:00
// @pushrocks scope
2021-12-02 23:24:10 +00:00
import * as lik from '@pushrocks/lik';
2020-10-05 16:20:57 +00:00
import * as smartfileInterfaces from '@pushrocks/smartfile-interfaces';
2021-12-20 14:11:21 +00:00
import * as smartdelay from '@pushrocks/smartdelay';
2019-09-27 09:00:17 +00:00
import * as smarthash from '@pushrocks/smarthash';
2020-10-05 16:20:57 +00:00
import * as smartjson from '@pushrocks/smartjson';
2020-03-04 16:31:13 +00:00
import * as smartmime from '@pushrocks/smartmime';
2019-09-27 09:00:17 +00:00
import * as smartpath from '@pushrocks/smartpath';
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrequest from '@pushrocks/smartrequest';
2022-06-07 13:11:21 +00:00
import * as smartstream from '@pushrocks/smartstream';
2019-09-27 09:00:17 +00:00
2022-03-11 08:46:54 +00:00
export {
lik,
smartfileInterfaces,
smartdelay,
smarthash,
smartjson,
smartmime,
smartpath,
smartpromise,
smartrequest,
2022-07-24 21:11:41 +00:00
smartstream,
2022-03-11 08:46:54 +00:00
};
2019-09-27 09:00:17 +00:00
// third party scope
2022-06-07 13:43:28 +00:00
import fsExtra from 'fs-extra';
2019-09-27 09:00:17 +00:00
import glob from 'glob';
import yaml from 'js-yaml';
2019-09-29 14:43:31 +00:00
export { fsExtra, glob, yaml };