fix(core): update

This commit is contained in:
2024-04-12 15:00:55 +02:00
parent 7de647daa1
commit e4e48dc9db
4 changed files with 14 additions and 13 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartfile',
version: '11.0.12',
version: '11.0.13',
description: 'provides a robust suite of tools for managing files in Node.js using TypeScript.'
}

View File

@ -170,6 +170,7 @@ export class SmartFile extends plugins.smartjson.Smartjson {
*/
public async write() {
let writePath = plugins.smartpath.transform.makeAbsolute(this.path, this.base);
console.log(`writing to ${writePath}`);
await memory.toFs(this.contentBuffer, writePath);
}