Compare commits

...

2 Commits

Author SHA1 Message Date
53e595a023 8.0.6 2020-10-06 00:57:48 +00:00
93702dca78 fix(core): update 2020-10-06 00:57:47 +00:00
3 changed files with 7 additions and 3 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -63,24 +63,28 @@ export class Smartfile extends plugins.smartjson.Smartjson {
public path: string; public path: string;
/** /**
* * a parsed path
*/ */
@plugins.smartjson.foldDec()
public parsedPath: plugins.path.ParsedPath; public parsedPath: plugins.path.ParsedPath;
/** /**
* the content of the file as Buffer * the content of the file as Buffer
*/ */
@plugins.smartjson.foldDec()
public contentBuffer: Buffer; public contentBuffer: Buffer;
/** /**
* The current working directory of the file * The current working directory of the file
* Note:this is similar to gulp and different from native node path base * Note:this is similar to gulp and different from native node path base
*/ */
@plugins.smartjson.foldDec()
public base: string; public base: string;
/** /**
* sync the file with disk * sync the file with disk
*/ */
@plugins.smartjson.foldDec()
public sync: boolean; public sync: boolean;
/** /**