smartfile/ts/smartfile.plugins.ts

26 lines
869 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';
2021-12-20 14:11:21 +00:00
export { lik, smartfileInterfaces, smartdelay, smarthash, smartjson, smartmime, smartpath, smartpromise, smartrequest };
2019-09-27 09:00:17 +00:00
// third party scope
import * as fsExtra from 'fs-extra';
import glob from 'glob';
import yaml from 'js-yaml';
2019-09-29 14:43:31 +00:00
export { fsExtra, glob, yaml };