From 023e1cdf299e9a10cea09822d81a0a86ff64efb7 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 14 Apr 2024 13:17:46 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/fs.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 28d765f..0ec1405 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartfile', - version: '11.0.13', + version: '11.0.14', description: 'provides a robust suite of tools for managing files in Node.js using TypeScript.' } diff --git a/ts/fs.ts b/ts/fs.ts index 0952b18..12e9ad5 100644 --- a/ts/fs.ts +++ b/ts/fs.ts @@ -447,8 +447,8 @@ export const waitForFileToBeReady = (filePathArg: string): Promise => { * @param fileBaseArg */ export let toFs = async ( - filePathArg: string, fileContentArg: string | Buffer | SmartFile | StreamFile, + filePathArg: string, optionsArg: { respectRelative?: boolean; } = {}