From 93702dca78806ae518b1b1cca51d46eec609c6dd Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 6 Oct 2020 00:57:47 +0000 Subject: [PATCH] fix(core): update --- ts/smartfile.classes.smartfile.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ts/smartfile.classes.smartfile.ts b/ts/smartfile.classes.smartfile.ts index 48f046d..42e64a1 100644 --- a/ts/smartfile.classes.smartfile.ts +++ b/ts/smartfile.classes.smartfile.ts @@ -63,24 +63,28 @@ export class Smartfile extends plugins.smartjson.Smartjson { public path: string; /** - * + * a parsed path */ + @plugins.smartjson.foldDec() public parsedPath: plugins.path.ParsedPath; /** * the content of the file as Buffer */ + @plugins.smartjson.foldDec() public contentBuffer: Buffer; /** * The current working directory of the file * Note:this is similar to gulp and different from native node path base */ + @plugins.smartjson.foldDec() public base: string; /** * sync the file with disk */ + @plugins.smartjson.foldDec() public sync: boolean; /**