fix(core): update

This commit is contained in:
Philipp Kunz 2024-04-14 13:17:46 +02:00
parent 493a235065
commit 023e1cdf29
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartfile', 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.' description: 'provides a robust suite of tools for managing files in Node.js using TypeScript.'
} }

View File

@ -447,8 +447,8 @@ export const waitForFileToBeReady = (filePathArg: string): Promise<void> => {
* @param fileBaseArg * @param fileBaseArg
*/ */
export let toFs = async ( export let toFs = async (
filePathArg: string,
fileContentArg: string | Buffer | SmartFile | StreamFile, fileContentArg: string | Buffer | SmartFile | StreamFile,
filePathArg: string,
optionsArg: { optionsArg: {
respectRelative?: boolean; respectRelative?: boolean;
} = {} } = {}