fix(core): update
This commit is contained in:
parent
b12de7aed4
commit
9c614bd2f3
@ -77,8 +77,16 @@ export class Smartfile extends plugins.smartjson.Smartjson {
|
||||
/**
|
||||
* a parsed path
|
||||
*/
|
||||
@plugins.smartjson.foldDec()
|
||||
public parsedPath: plugins.path.ParsedPath;
|
||||
public get parsedPath (): plugins.path.ParsedPath {
|
||||
return plugins.path.parse(this.path);
|
||||
};
|
||||
public get absolutePath () {
|
||||
return plugins.path.join(this.base, this.path);
|
||||
}
|
||||
|
||||
public get absoluteParsedPath() {
|
||||
return plugins.path.parse(this.absolutePath);
|
||||
}
|
||||
|
||||
/**
|
||||
* the content of the file as Buffer
|
||||
@ -112,18 +120,9 @@ export class Smartfile extends plugins.smartjson.Smartjson {
|
||||
console.log('created empty Smartfile?');
|
||||
}
|
||||
this.path = optionsArg.path;
|
||||
this.parsedPath = plugins.path.parse(this.path);
|
||||
this.base = optionsArg.base;
|
||||
}
|
||||
|
||||
public getAbsolutePath () {
|
||||
return plugins.path.join(this.base, this.path);
|
||||
}
|
||||
|
||||
public getAbsoluteParsedPath() {
|
||||
return plugins.path.parse(this.getAbsolutePath());
|
||||
}
|
||||
|
||||
/**
|
||||
* set contents from string
|
||||
* @param contentString
|
||||
|
Loading…
Reference in New Issue
Block a user