Compare commits

..

2 Commits

Author SHA1 Message Date
80743576ad 7.0.6 2019-09-29 16:43:32 +02:00
32a6db645d fix(core): update 2019-09-29 16:43:31 +02:00
3 changed files with 5 additions and 17 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartfile",
"version": "7.0.5",
"version": "7.0.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "@pushrocks/smartfile",
"private": false,
"version": "7.0.5",
"version": "7.0.6",
"description": "offers smart ways to work with files in nodejs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",

View File

@ -2,10 +2,7 @@
import * as fs from 'fs';
import * as path from 'path';
export {
fs,
path
};
export { fs, path };
// @pushrocks scope
import * as smarthash from '@pushrocks/smarthash';
@ -13,20 +10,11 @@ import * as smartpath from '@pushrocks/smartpath';
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrequest from '@pushrocks/smartrequest';
export {
smarthash,
smartpath,
smartpromise,
smartrequest,
};
export { smarthash, smartpath, smartpromise, smartrequest };
// third party scope
import * as fsExtra from 'fs-extra';
import glob from 'glob';
import yaml from 'js-yaml';
export {
fsExtra,
glob,
yaml
};
export { fsExtra, glob, yaml };